Added /usr/local/sbin to PATH

This commit is contained in:
Nick Nisi
2012-10-01 11:19:53 -05:00
parent 662576ec74
commit d889c18aee

View File

@@ -28,6 +28,11 @@ if [[ -d ~/.rvm ]]; then
source ~/.rvm/scripts/rvm
fi
# add /usr/local/sbin
if [[ -d /usr/local/sbin ]]; then
export PATH=/usr/local/sbin:$PATH
fi
# check for custom bin directory and add to path
if [[ -d ~/bin ]]; then
export PATH=~/bin:$PATH