Skip to content

Commit

Permalink
Update golang version to 1.11.2
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Seriani <ricardo.seriani@gmail.com>
  • Loading branch information
ricardoseriani committed Nov 3, 2018
1 parent 4df783e commit ffeeb72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ chown vagrant:vagrant /home/vagrant/.zshrc

# Install Golang

golangVersion="1.11.1"
golangVersion="1.11.2"
wget https://dl.google.com/go/go${golangVersion}.linux-amd64.tar.gz -O golang.tar.gz
tar -C /usr/local -xzf golang.tar.gz
printf "\nPATH=\"/usr/local/go/bin:\$PATH\"\n" | tee -a /home/vagrant/.profile
Expand Down

1 comment on commit ffeeb72

@simonschaufi
Copy link

@simonschaufi simonschaufi commented on ffeeb72 Nov 15, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would like to add an issue but it is blocked here.

I have an issue here with go complaining about:

vagrant@homestead:~/some-path$ sudo go get
go get: no install location for directory /home/vagrant/some-path outside GOPATH
        For more details see: 'go help gopath'

Isn't GOPATH setting like export GOPATH=$HOME/go missing here? See https://stackoverflow.com/a/21012349

Please sign in to comment.