From: David Kerkeslager Date: Mon, 12 Sep 2011 16:03:30 +0000 (-0400) Subject: Adding a fix for a Mac OSX issue where .profile is sourced instead of X-Git-Url: https://code.kerkeslager.com/?p=dotfiles;a=commitdiff_plain;h=e0b764f8a7f02be8efe284bc487382315de567c8 Adding a fix for a Mac OSX issue where .profile is sourced instead of .bashrc. --- 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