build with go 1.8

master
Oliver Tonnhofer 2017-04-03 15:18:42 +02:00
parent fb7d574d9e
commit cbec2f20a3
1 changed files with 3 additions and 2 deletions

View File

@ -90,8 +90,9 @@ fi
if [ ! -e $BUILD_BASE/go/bin/go ]; then
echo "-> installing go"
pushd $SRC
$CURL https://storage.googleapis.com/golang/go1.7.3.linux-amd64.tar.gz -O
tar xzf go1.7.3.linux-amd64.tar.gz -C $BUILD_BASE/
rm -rf $BUILD_BASE/go
$CURL https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz -O
tar xzf go1.8.linux-amd64.tar.gz -C $BUILD_BASE/
popd
fi