#!/bin/bash
# dev/tool/go - Go Language Support
go_version="1.9"
go_installdir="/usr/local"
go_homedir="$go_installdir/go-$go_version"
go_bindir="$go_homedir/bin"
# $go_workspace - If set, defines the path to your workspace.
# This sets ``$GOPATH`` when it is needed.
go_workspace="$HOME/src/go"
go_work_srcdir="$go_workspace/src"
go_repodir="$go_work_srcdir/go"
#go_os=
#go_arch=
go_url_host="https://storage.googleapis.com"
go_bin_tarball="go${go_version}.linux-amd64.tar.gz"
go_bin_url="$go_url_host/golang/$go_bin_tarball"
go_src_tarball="go${go_version}.src.tar.gz"
go_src_url="$go_url_host/golang/$go_src_tarball"
go_git_url="https://go.googlesource.com/go"
Generated on Thu Jun 21 06:57:44 PDT 2018 by mcsh d14 v0.24.0.