forked from startup-class/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bash_profile
27 lines (22 loc) · 1.07 KB
/
.bash_profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export PATH=$PATH:/opt/local/bin
export MATHPATH=$MATHPATH:opt/local/share/man
export INFOPATH=$INFOPATH:/opt/local/share/info
##
# Your previous /Users/matthewphinney/.bash_profile file was backed up as /Users/matthewphinney/.bash_profile.macports-saved_2013-04-07_at_11:30:37
##
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# MacPorts Installer addition on 2013-04-07_at_11:30:37: adding an appropriate PATH variable for use with MacPorts.
export PATH=/Users/$whoami/bin:/opt/local/bin:/opt/local/sbin:$PATH
# Finished adapting your PATH environment variable for use with MacPorts.
# mount the android file image
function mountAndroid { hdiutil attach ~/ANDROID_CODE.dmg -mountpoint /Volumes/ANDROID_DISK_IMAGE; }
# Setup Amazon EC2 command-line tools
export EC2_HOME=~/.ec2
export PATH=$PATH:$EC2_HOME/bin
#export EC2_PRIVATE_KEY=`ls $EC2_HOME/*.pem`
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home/
[[ -s /Users/matthewphinney/.nvm/nvm.sh ]] && . /Users/matthewphinney/.nvm/nvm.sh # This loads NVM
### Added by the Heroku Toolbelt
export PATH=/usr/local/heroku/bin:$PATH