Adding a fix for a Mac OSX issue where .profile is sourced instead of
[dotfiles] / .profile
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