From c962518cc2987557f6da24e900b4563149feccfc Mon Sep 17 00:00:00 2001
From: E14 <1640391+E14@users.noreply.github.com>
Date: Thu, 15 Oct 2020 06:14:22 +0200
Subject: [PATCH] Use GO variable in go-check target (#13146) (#13147)

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 404ead6d1e..cd4f34c8c3 100644
--- a/Makefile
+++ b/Makefile
@@ -186,7 +186,7 @@ help:
 
 .PHONY: go-check
 go-check:
-	$(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 '.' ' ');))
 	@if [ "$(GO_VERSION)" -lt "$(MIN_GO_VERSION)" ]; then \
 		echo "Gitea requires Go 1.13 or greater to build. You can get it at https://golang.org/dl/"; \
 		exit 1; \