Fix Go 1.8 in Vagrantfile

This commit is contained in:
Michael Schurter 2017-02-23 13:27:18 -08:00
parent 690dfa8f5a
commit 2b22b86e61
1 changed files with 2 additions and 1 deletions

3
Vagrantfile vendored
View File

@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
DEFAULT_CPU_COUNT = 2
$script = <<SCRIPT
GO_VERSION="1.8.0"
GO_VERSION="1.8"
export DEBIAN_FRONTEND=noninteractive
@ -36,6 +36,7 @@ else
cd /tmp
wget -q https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${ARCH}.tar.gz
tar -xf go${GO_VERSION}.linux-${ARCH}.tar.gz
sudo rm -rf $SRCROOT/go
sudo mv go $SRCROOT
sudo chmod 775 $SRCROOT
sudo chown vagrant:vagrant $SRCROOT