From e0b764f8a7f02be8efe284bc487382315de567c8 Mon Sep 17 00:00:00 2001 From: David Kerkeslager Date: Mon, 12 Sep 2011 12:03:30 -0400 Subject: [PATCH] Adding a fix for a Mac OSX issue where .profile is sourced instead of .bashrc. --- .profile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .profile diff --git a/.profile b/.profile new file mode 100644 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 -- 2.20.1