tb-dotfiles/home/.zshrc.d/00_go.sh

11 lines
212 B
Bash
Executable file

#!/bin/bash
if command -v go &> /dev/null; then
GOPATH="$(go env GOPATH)"
if [ -n "${GOPATH}" ]; then
export GOPATH
export PATH="${GOPATH}/bin:${PATH}"
fi
else
>&2 echo '"go" is missing from the PATH'
fi