Created
March 25, 2018 02:42
-
-
Save AlexKorovyansky/1efa72064a16ac8af7c876fe01337085 to your computer and use it in GitHub Desktop.
.bash_profile
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
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
fi | |
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home | |
export ANDROID_HOME="$HOME/Library/Android/sdk" | |
export ANDROID_HOME_PLATFORM_TOOLS="$ANDROID_HOME/platform-tools" | |
export FASTLANE_HOME="$HOME/.fastlane/bin" | |
export CODE_HOME="/Applications/Visual Studio Code.app/Contents/Resources/app/bin" | |
export PATH="$JAVA_HOME:$ANDROID_HOME_PLATFORM_TOOLS:$FASTLANE_HOME:$CODE_HOME:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment