Files
dotfiles/profile/.profile.d/go.sh
2025-07-15 22:01:47 +02:00

13 lines
239 B
Bash
Executable File

#!/usr/bin/env bash
case $(uname -s) in
"Linux")
export GOPATH="$HOME/.local/share/Go";;
"Darwin")
export GOPATH="$HOME/Library/Go";;
*)
echo "Operating System unknown";;
esac
export GOBIN=$GOPATH/bin