Files
dotfiles/profile/.profile.d/go.sh
Fabio Scotto di Santolo e477042df2 Fix Profile configurations
2024-12-28 19:11:37 +01:00

13 lines
239 B
Bash

#!/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