Skip to content

Commit

Permalink
Merge pull request joewalnes#371 from andreydiveev/fix-go-downloading…
Browse files Browse the repository at this point in the history
…-issue

Fix Go downloading issue
  • Loading branch information
asergeyev committed Nov 7, 2019
2 parents 2a3df99 + cfb03af commit 7c9231a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $(GO_DIR)/bin/go:
mkdir -p $(GO_DIR)
rm -f $@
@echo Downloading and unpacking Go $(GO_VERSION) to $(GO_DIR)
curl -s $(GO_DOWNLOAD_URL) | tar xf - --strip-components=1 -C $(GO_DIR)
curl -s $(GO_DOWNLOAD_URL) | tar xfz - --strip-components=1 -C $(GO_DIR)

# Clean up binary
clean:
Expand Down

0 comments on commit 7c9231a

Please sign in to comment.