fix(bash/go): add GOBIN

This commit is contained in:
Dan Anglin 2022-04-29 08:07:28 +01:00
parent abfffb7798
commit d31765265b
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -4,12 +4,17 @@
if [ -f "${HOME}/.local/software/go/bin/go" ]; then
export GOPATH=${XDG_DATA_HOME}/go
export GOROOT=${HOME}/.local/software/go
export PATH=${PATH}:${GOPATH}/bin
export GOBIN=${HOME}/.local/goblin
export PATH=${PATH}:${GOBIN}
if ! [ -d "${GOPATH}" ]; then
mkdir ${GOPATH}
fi
if ! [ -d "${GOBIN}" ]; then
mkdir ${GOBIN}
fi
export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=0