Skip to content

Commit

Permalink
fix brew not in path
Browse files Browse the repository at this point in the history
  • Loading branch information
arron-green committed Feb 25, 2022
1 parent 7e58421 commit fe06396
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions profile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ export COLOR_BLUE='\[\033[34m\]'
export COLOR_CYAN='\[\033[36m\]'
export EDITOR=$(command -v vim)

if [[ -d /opt/homebrew/bin ]]; then
export PATH="/opt/homebrew/bin:$PATH"
fi
if [[ -d /opt/homebrew/sbin ]]; then
export PATH="/opt/homebrew/sbin:$PATH"
fi

function echo-err() {
printf "%s\n" "$*" >&2;
}
Expand Down

0 comments on commit fe06396

Please sign in to comment.