From 46533ec5c71dac7d9213e9c9cd63f740064ee9c5 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Mon, 23 Jul 2012 17:23:40 -0500 Subject: [PATCH] Adding sbin to homebrew path --- bashrc | 2 +- fish/config.fish | 1 + oh-my-zsh | 2 +- vim/bundle/vundle | 2 +- zshrc | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bashrc b/bashrc index 108f061..92fd3c6 100644 --- a/bashrc +++ b/bashrc @@ -16,7 +16,7 @@ export P4EDITOR=vi export SVN_EDITOR=vi export EDITOR=vim -export PATH="/usr/local/bin:$PATH" +export PATH="/usr/local/bin:/usr/local/sbin:$PATH" export TERM="xterm-256color" diff --git a/fish/config.fish b/fish/config.fish index a52d337..627a3bb 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -13,6 +13,7 @@ set -x SVN_EDITOR vim alias visidev "ssh root@visidev.iocom.com 'cd /; p4 sync'" set -x PATH /usr/local/bin $PATH # Homebrew +set -x PATH /usr/local/sbin $PATH # Homebrew set -x PATH $HOME/.rvm/bin $PATH # RVM set -x PATH /Applications/Postgres.app/Contents/MacOS/bin $PATH # Postgres set -x PATH $HOME/Library/Haskell/bin $PATH # Haskell diff --git a/oh-my-zsh b/oh-my-zsh index caa1554..1103421 160000 --- a/oh-my-zsh +++ b/oh-my-zsh @@ -1 +1 @@ -Subproject commit caa15548c107b9c31f61a67547ffab0b0cfe4934 +Subproject commit 11034217a7ea3cffe6e0fe631837c518b8c7e1a5 diff --git a/vim/bundle/vundle b/vim/bundle/vundle index dd8356a..03ed2bd 160000 --- a/vim/bundle/vundle +++ b/vim/bundle/vundle @@ -1 +1 @@ -Subproject commit dd8356aea7499fed92f7c37227b1625a2b3dc190 +Subproject commit 03ed2bd39e37c5ff035c05197af81558eb5d8a89 diff --git a/zshrc b/zshrc index f2e66cc..1d8c41e 100644 --- a/zshrc +++ b/zshrc @@ -43,7 +43,7 @@ export SVN_EDITOR=vim # sync visidev to latest Perforce alias visidev="ssh root@visidev.iocom.com 'cd /; p4 sync'" -export PATH=/usr/local/bin:$PATH # Homebrew +export PATH=/usr/local/bin:/usr/local/sbin:$PATH # Homebrew export PATH=$HOME/.rvm/bin:$PATH # RVM export PATH=/Applications/Postgres.app/Contents/MacOS/bin:$PATH # Postgres export PATH=$HOME/Library/Haskell/bin:$PATH # Haskell