This commit is contained in:
Corey Smith
2025-08-01 10:12:43 -07:00
parent 40a1257331
commit 8cb46fdec3
2 changed files with 0 additions and 15 deletions

View File

@ -4,10 +4,6 @@ if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
export GOPATH=$HOME/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
export PATH=$PATH:$(go env GOPATH)/bin
# Herd injected NVM configuration
export NVM_DIR="/Users/corey/Library/Application Support/Herd/config/nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

View File

@ -89,17 +89,6 @@ if [ -d "/opt/homebrew/bin" ]; then
PATH="/opt/homebrew/bin:/opt/homebrew/sbin:$PATH"
fi
# Add Go bin directory if it exists
if [ -d "/usr/local/go/bin" ]; then
PATH="/usr/local/go/bin:$PATH"
fi
# Add Topaz Photo AI bin directory if it exists
TOPAZ_BIN="/Applications/Topaz Photo AI.app/Contents/Resources/bin"
if [ -d "$TOPAZ_BIN" ]; then
PATH="$TOPAZ_BIN:$PATH"
fi
# Export the final PATH
export PATH