diff --git a/dot_bash_profile b/dot_bash_profile index ec5c514..ea80cf5 100644 --- a/dot_bash_profile +++ b/dot_bash_profile @@ -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 diff --git a/dot_bashrc b/dot_bashrc index 25b4eba..6432ab5 100644 --- a/dot_bashrc +++ b/dot_bashrc @@ -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