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 07924b8 commit 31738aeCopy full SHA for 31738ae
release/Makefile
@@ -43,7 +43,7 @@ endif
43
44
45
46
-GO_SRC_URL=https://dl.google.com/go/go$(GO_VERSION).$(UNAME_SYS)-$(UNAME_ARCH).tar.gz
+GO_DOWNLOAD_URL=https://dl.google.com/go/go$(GO_VERSION).$(UNAME_SYS)-$(UNAME_ARCH).tar.gz
47
GO_DIR=../go-$(GO_VERSION)
48
49
# Prevent any global environment polluting the builds
@@ -69,7 +69,7 @@ $(GO_DIR)/bin/go:
69
mkdir -p $(GO_DIR)
70
rm -f $@
71
@echo Downloading and unpacking Go $(GO_VERSION) to $(GO_DIR)
72
- curl $(GO_DOWNLOAD_URL) | tar xzf - --strip-components=1 -C $(GO_DIR)
+ curl -s $(GO_DOWNLOAD_URL) | tar xzf - --strip-components=1 -C $(GO_DIR)
73
74
75
# Cross-compile final applications
0 commit comments