my .bashrc
export ANDROID_HOME=/home/bonnie/Android/Sdk | |
export PATH=${ANDROID_HOME}/tools:${PATH} | |
export PATH=${ANDROID_HOME}/platform-tools:${PATH} | |
export PATH=${ANDROID_HOME}/build-toold:${PATH} | |
export PATH=${ANDROID_HOME}/../android-ndk-r10e:${PATH} | |
export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64 | |
export NVM_DIR="/home/bonnie/.nvm" | |
## If the file exists and is not empty | |
if [ -s "$NVM_DIR/nvm.sh" ]; then | |
## Source it | |
source "$NVM_DIR/nvm.sh" | |
fi | |
NODE_DEFAULT_VERSION=$(<"$NVM_DIR/alias/default") | |
export PATH="$NVM_DIR/versions/node/$NODE_DEFAULT_VERSION/bin":$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment