From f549835f5a7f916c91de2e206426ebcfe4ca595d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 16 Oct 2012 08:06:44 +0100 Subject: [PATCH] add '/usr/sbin' to path --- shell/env.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell/env.sh b/shell/env.sh index 967ac48..9fe9df3 100644 --- a/shell/env.sh +++ b/shell/env.sh @@ -19,6 +19,9 @@ export ANDROID_SDK_ROOT="/usr/local/Cellar/android-sdk/r20.0.1" # ensure bin and sbin paths from /usr/local are in PATH path_add_after "/usr/local/sbin" "/usr/local/bin" +# ensure bin and sbin paths from /usr are in PATH +path_add_after "/usr/sbin" "/usr/bin" + # Add user's bin directory to PATH path_prepend "$HOME/bin"