Fix Profile configurations

This commit is contained in:
Fabio Scotto di Santolo
2024-12-28 13:51:29 +01:00
parent 3a93f11774
commit e477042df2
9 changed files with 53 additions and 28 deletions

View File

@@ -1,4 +1,12 @@
#!/usr/bin/env bash
export GOPATH=$HOME/Library/Go
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