Codebase list zonedb / v1.0.3008 install-go.sh
v1.0.3008

Tree @v1.0.3008 (Download .tar.gz)

install-go.sh @v1.0.3008raw · history · blame

#!/usr/bin/env bash

set -e
set -u

curl -o /app/go.tgz https://storage.googleapis.com/golang/go1.9.4.linux-amd64.tar.gz
tar xvf /app/go.tgz -C /app
mkdir -p /app/go2
export GOROOT=/app/go GOPATH=/app/go2 PATH=/app/go/bin:$PATH
go get -t -d -v ./...