From d889c18aee5e7a3c48e4e1149e0cc3342b62ff44 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Mon, 1 Oct 2012 11:19:53 -0500 Subject: [PATCH] Added /usr/local/sbin to PATH --- zsh/zshrc.symlink | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zsh/zshrc.symlink b/zsh/zshrc.symlink index 939f3a6..7a55f80 100644 --- a/zsh/zshrc.symlink +++ b/zsh/zshrc.symlink @@ -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