plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 83a5aba766bf2a2a84fe20df0d72d47a9105fdb2
parent 0c9524b72197871c435464d064fdcc3dd5437581
Author: Rob Kroeger <robkroeger@gmail.com>
Date:   Mon, 28 Nov 2011 10:09:26 -0500

mac Plumb: skip loading non-existent .bashrc

R=rsc
CC=plan9port.codebot
http://codereview.appspot.com/5434052

Diffstat:
MCONTRIBUTORS | 1+
Mmac/Plumb.app/Contents/MacOS/plumb | 4+++-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/CONTRIBUTORS b/CONTRIBUTORS @@ -28,6 +28,7 @@ Michael Teichgräber <mt@ib.wmipf.de> Nikolai Saoukh <nikolai.saoukh@gmail.com> Peter Saveliev <svinota.saveliev@gmail.com> Richard Miller <millerresearch@gmail.com> +Rob Kroeger <robkroeger@gmail.com> Rob Pike <robpike@gmail.com> Russ Cox <rsc@swtch.com> Sean McKean <smckean83@gmail.com> diff --git a/mac/Plumb.app/Contents/MacOS/plumb b/mac/Plumb.app/Contents/MacOS/plumb @@ -1,6 +1,8 @@ #!/bin/bash -. ~/.bashrc +if [ -e ~/.bashrc ] ; then + . ~/.bashrc +fi PLAN9=${PLAN9:-/usr/local/plan9} bin=$PLAN9/bin