We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a3785 commit c962518Copy full SHA for c962518
Makefile
@@ -186,7 +186,7 @@ help:
186
187
.PHONY: go-check
188
go-check:
189
- $(eval GO_VERSION := $(shell printf "%03d%03d%03d" $(shell go version | grep -Eo '[0-9]+\.[0-9.]+' | tr '.' ' ');))
+ $(eval GO_VERSION := $(shell printf "%03d%03d%03d" $(shell $(GO) version | grep -Eo '[0-9]+\.[0-9.]+' | tr '.' ' ');))
190
@if [ "$(GO_VERSION)" -lt "$(MIN_GO_VERSION)" ]; then \
191
echo "Gitea requires Go 1.13 or greater to build. You can get it at https://golang.org/dl/"; \
192
exit 1; \
0 commit comments