feat: Update Go installation method to use package manager and adjust environment variables

This commit is contained in:
Peter Wood
2025-05-30 08:57:10 -04:00
parent f2c415cc1b
commit 137e5e8e2f
3 changed files with 17 additions and 16 deletions

View File

@@ -129,9 +129,9 @@ if [ -f "$HOME/shell/completions/backup-scripts-completion.bash" ]; then
fi
# Go environment variables (required for Fabric and other Go tools)
export GOROOT=/usr/local/go
# GOROOT is auto-detected by Go when installed via package manager
export GOPATH=$HOME/go
export PATH=$GOROOT/bin:$GOPATH/bin:$PATH
export PATH=$GOPATH/bin:$PATH
# Fabric AI - Pattern aliases and helper functions
if command -v fabric &> /dev/null; then