From cbf36d46eef1094c36e21d420714af3b1ba6ca28 Mon Sep 17 00:00:00 2001 From: Achilleas Anagnostopoulos Date: Wed, 28 Jun 2017 07:29:04 +0100 Subject: [PATCH] Install Go 1.8.3 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index a34b4ef..01bedcb 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -18,7 +18,7 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: <<-SHELL apt-get update apt-get install -y nasm gccgo xorriso - [ ! -d "/usr/local/go" ] && wget -qO- https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz | tar xz -C /usr/local + [ ! -d "/usr/local/go" ] && wget -qO- https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | tar xz -C /usr/local echo "export GOROOT=/usr/local/go" > /etc/profile.d/go.sh echo "export GOBIN=/usr/local/go/bin" >> /etc/profile.d/go.sh echo "export GOPATH=/home/vagrant/workspace" >> /etc/profile.d/go.sh