Skip to content

Commit

Permalink
Ensure /usr/local/bin is in $PATH.
Browse files Browse the repository at this point in the history
  • Loading branch information
drn committed Jan 4, 2022
1 parent 16c5608 commit a1256d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions home/zshenv
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ if [ "$ZSHENV_SOURCED" != "true" ]; then
export PATH=$HOME/bin:$PATH
# Include Homebrew in PATH
export BREW_PATH=/usr/local # Intel silicon
[ -d "/opt/homebrew" ] && export BREW_PATH=/opt/homebrew # ARM silicon
export PATH=$BREW_PATH/bin:$BREW_PATH/sbin:$PATH
[ -d "/opt/homebrew" ] && export BREW_PATH=/opt/homebrew # Apple silicon
export PATH=/usr/local/bin:/usr/local/sbin:$PATH # Intel Homebrew Formula
export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH # Apple Homebrew Formula
# Include git extensions in PATH
export PATH=$HOME/.git-extensions:$PATH
# Include MySQL in PATH
Expand Down

0 comments on commit a1256d9

Please sign in to comment.