homebrew path fix

This commit is contained in:
James Patrick 2024-01-19 13:45:08 -05:00
parent bac1c72662
commit abc1359d0e
No known key found for this signature in database
1 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,6 @@
#!/usr/bin/env zsh
export HOMEBREW_BIN='/usr/local/bin'
export HOMEBREW_SBIN='/usr/local/sbin'
export GOPATH="${HOME}/.go"
export PSQLAPP="/Applications/Postgres.app/Contents/Versions/latest/bin"
export JAVA_HOME=$(/usr/libexec/java_home -v 11)
@ -7,4 +9,6 @@ path=(
$GOPATH/bin
$PSQLAPP
$JAVA_HOME/bin
$HOMEBREW_BIN
$HOMEBREW_SBIN
$path)