projects
/
dotfiles
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5be034
)
Adding a fix for a Mac OSX issue where .profile is sourced instead of
author
David Kerkeslager
<kerkeslager@gmail.com>
Mon, 12 Sep 2011 16:03:30 +0000
(12:03 -0400)
committer
David Kerkeslager
<david.kerkeslager@globalpovertyproject.com>
Tue, 4 Aug 2015 15:01:14 +0000
(15:01 +0000)
.bashrc.
.profile
[new file with mode: 0644]
patch
|
blob
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