Files
dotfiles/zsh/.profile.d/go.sh
Fabio Scotto di Santolo 6249ebcb1f Initial commit
2025-07-25 11:02:18 +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