From 817bccf814023914633ed4578b5380af1aa93a7b Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Tue, 27 Nov 2012 12:46:24 +0100 Subject: [PATCH] npm path, new android sdk path --- bash_profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bash_profile b/bash_profile index 9e48ba1..7432c22 100644 --- a/bash_profile +++ b/bash_profile @@ -38,12 +38,13 @@ unset MAILCHECK PATH="$PATH:/usr/local/sbin:/usr/sbin:/sbin"; # if these bins exist, then add them to the PATH -ANDROID_HOME="/usr/local/Cellar/android-sdk/r20" +ANDROID_HOME="/usr/local/Cellar/android-sdk/r21" [ -d "$ANDROID_HOME" ] && PATH="$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools"; # add to beginning of PATH so that it always take precedence over /usr/bin [ -d "/usr/local/bin" ] && PATH="/usr/local/bin:$PATH"; [ -d "/usr/local/mysql/bin" ] && PATH="/usr/local/mysql/bin:$PATH"; +[ -d "/usr/local/share/npm/bin" ] && PATH="/usr/local/share/npm/bin:$PATH"; export PATH