Skip to content

Commit

Permalink
fix Makefile.COMMON: missing curl?
Browse files Browse the repository at this point in the history
  • Loading branch information
f1yegor committed Jul 11, 2017
1 parent 2dfd2ce commit d6c7673
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.COMMON
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ifeq ($(GOOS),darwin)
RELEASE_SUFFIX ?= -osx$(shell sw_vers -productVersion)
endif

GO_VERSION ?= 1.7.1
GO_VERSION ?= 1.8.3
GOURL ?= https://golang.org/dl
GOPKG ?= go$(GO_VERSION).$(GOOS)-$(GOARCH)$(RELEASE_SUFFIX).tar.gz
GOPATH := $(CURDIR)/.build/gopath
Expand Down Expand Up @@ -84,6 +84,7 @@ $(GOCC):
@echo
@sleep 5
mkdir -p $(GOROOT)
apk --no-cache add openssl curl
curl -L $(GOURL)/$(GOPKG) | tar -C $(GOROOT) --strip 1 -xz

$(SELFLINK):
Expand Down

0 comments on commit d6c7673

Please sign in to comment.