Codebase list zonedb / 6c87cf25-9e9b-4f79-947d-60437692a43f/main install-go.sh
6c87cf25-9e9b-4f79-947d-60437692a43f/main

Tree @6c87cf25-9e9b-4f79-947d-60437692a43f/main (Download .tar.gz)

install-go.sh @6c87cf25-9e9b-4f79-947d-60437692a43f/mainraw · 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 ./...