From 1ff70173ae7485154d0ddaa9dc065a164f1e2d08 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Tue, 16 Aug 2016 12:29:45 +0200 Subject: [PATCH] functional: upgrade golang from 1.6.3 to 1.7 Now that go 1.7 was released, we should install go 1.7 also inside of VMs for functional tests. --- functional/provision/install_go.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functional/provision/install_go.sh b/functional/provision/install_go.sh index 4215dce05..29bff78e2 100755 --- a/functional/provision/install_go.sh +++ b/functional/provision/install_go.sh @@ -6,7 +6,7 @@ HOME=$(getent passwd "${USER_ID}" | cut -d: -f6) export GOROOT=${HOME}/go export PATH=${HOME}/go/bin:${PATH} -gover=1.6.3 +gover=1.7 gotar=go${gover}.linux-amd64.tar.gz if [ ! -f ${HOME}/${gotar} ]; then # Remove unfinished archive when you press Ctrl+C