Skip to content

Commit

Permalink
Fix some pathing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fbartho committed Nov 29, 2017
1 parent bfc4287 commit 7478209
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .profile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ fi

## My own scripts
PATH="$HOME/.bin:$PATH"
PATH="/usr/local/sbin:$PATH"
PATH="/usr/local/share/npm/bin:$PATH"

# Bash settings
Expand Down Expand Up @@ -45,7 +46,7 @@ source "/Volumes/secure-dotfiles/.env"
ulimit -n 10000

## Load aliases
source .aliases.bash
source "$HOME/.aliases.bash"
source `which go_use_aliases`
source `which go_use_fixup_env`

Expand All @@ -55,3 +56,8 @@ eval "$(hub alias -s)"
## load custom PS1 prompt
source $HOME/.bin/ps1

export PATH="/usr/local/opt/gsl@1/bin:$PATH"

# Make sure /usr/local/bin is first
export PATH="/usr/local/opt/openssl/bin:$PATH"
export PATH="/usr/local/bin:$PATH"

0 comments on commit 7478209

Please sign in to comment.