From 53ca64ed7e6bddcc9827b3d58a9e26abd2d5e9a6 Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Sat, 12 Dec 2015 09:08:24 -0800 Subject: [PATCH] Using Go 1.5.2 --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 07c06f034..a328b355a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -18,8 +18,8 @@ ARCH=`uname -m | sed 's|i686|386|' | sed 's|x86_64|amd64|'` # Install Go cd /tmp -wget -q https://storage.googleapis.com/golang/go1.5.1.linux-${ARCH}.tar.gz -tar -xf go1.5.1.linux-${ARCH}.tar.gz +wget -q https://storage.googleapis.com/golang/go1.5.2.linux-${ARCH}.tar.gz +tar -xf go1.5.2.linux-${ARCH}.tar.gz sudo mv go $SRCROOT sudo chmod 775 $SRCROOT sudo chown vagrant:vagrant $SRCROOT