Skip to content

Commit 31738ae

Browse files
committed
Fix errorneous download URL
1 parent 07924b8 commit 31738ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

release/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ endif
4343

4444

4545

46-
GO_SRC_URL=https://dl.google.com/go/go$(GO_VERSION).$(UNAME_SYS)-$(UNAME_ARCH).tar.gz
46+
GO_DOWNLOAD_URL=https://dl.google.com/go/go$(GO_VERSION).$(UNAME_SYS)-$(UNAME_ARCH).tar.gz
4747
GO_DIR=../go-$(GO_VERSION)
4848

4949
# Prevent any global environment polluting the builds
@@ -69,7 +69,7 @@ $(GO_DIR)/bin/go:
6969
mkdir -p $(GO_DIR)
7070
rm -f $@
7171
@echo Downloading and unpacking Go $(GO_VERSION) to $(GO_DIR)
72-
curl $(GO_DOWNLOAD_URL) | tar xzf - --strip-components=1 -C $(GO_DIR)
72+
curl -s $(GO_DOWNLOAD_URL) | tar xzf - --strip-components=1 -C $(GO_DIR)
7373

7474

7575
# Cross-compile final applications

0 commit comments

Comments
 (0)