Adding a fix for a Mac OSX issue where .profile is sourced instead of
authorDavid Kerkeslager <kerkeslager@gmail.com>
Mon, 12 Sep 2011 16:03:30 +0000 (12:03 -0400)
committerDavid Kerkeslager <david.kerkeslager@globalpovertyproject.com>
Tue, 4 Aug 2015 15:01:14 +0000 (15:01 +0000)
.bashrc.

.profile [new file with mode: 0644]

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