From ce9560712ef280aae91dd945007b7a1d60c04281 Mon Sep 17 00:00:00 2001 From: Mikael Manukyan Date: Tue, 9 Jul 2019 16:50:24 -0700 Subject: [PATCH] update Go version in Vagrantfile update go to the lastest version v1.12.7 Co-authored-by: Gabe Rosenhouse --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 58de5765..7fd2e6e3 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,9 +10,9 @@ Vagrant.configure(2) do |config| set -e -x -u apt-get update -y || (sleep 40 && apt-get update -y) apt-get install -y git gcc-multilib gcc-mingw-w64 - wget -qO- https://storage.googleapis.com/golang/go1.11.1.linux-amd64.tar.gz | tar -C /usr/local -xz + wget -qO- https://storage.googleapis.com/golang/go1.12.7.linux-amd64.tar.gz | tar -C /usr/local -xz echo 'export GOPATH=/go' >> /root/.bashrc echo 'export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin' >> /root/.bashrc cd /go/src/github.com/containernetworking/plugins SHELL -end \ No newline at end of file +end