Adding .bash_profile, which on Mac OS X Lion is sourced instead of
authorDavid Kerkeslager <kerkeslager@gmail.com>
Fri, 10 Feb 2012 20:51:06 +0000 (15:51 -0500)
committerDavid Kerkeslager <david.kerkeslager@globalpovertyproject.com>
Tue, 4 Aug 2015 15:01:20 +0000 (15:01 +0000)
.profile.

.bash_profile [new file with mode: 0644]

diff --git a/.bash_profile b/.bash_profile
new file mode 100644 (file)
index 0000000..f4b3dc2
--- /dev/null
@@ -0,0 +1,4 @@
+# Mac OSX sources .profile instead of .bashrc, so just source .bashrc
+if [ -f ~/.bashrc ]; then
+    . ~/.bashrc
+fi