Created
January 1, 2016 12:13
-
-
Save souparno/d6f96a759007b252b3ff to your computer and use it in GitHub Desktop.
my .bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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