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

@ -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