Skip to content

Commit 7c9231a

Browse files
authored
Merge pull request #371 from andreydiveev/fix-go-downloading-issue
Fix Go downloading issue
2 parents 2a3df99 + cfb03af commit 7c9231a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $(GO_DIR)/bin/go:
2929
mkdir -p $(GO_DIR)
3030
rm -f $@
3131
@echo Downloading and unpacking Go $(GO_VERSION) to $(GO_DIR)
32-
curl -s $(GO_DOWNLOAD_URL) | tar xf - --strip-components=1 -C $(GO_DIR)
32+
curl -s $(GO_DOWNLOAD_URL) | tar xfz - --strip-components=1 -C $(GO_DIR)
3333

3434
# Clean up binary
3535
clean:

0 commit comments

Comments
 (0)