From 5d64e392d2ce7efdc05f5899a88cdbeed553c76b Mon Sep 17 00:00:00 2001 From: short <> Date: Wed, 26 Sep 2001 17:07:39 +0000 Subject: [PATCH] Silent pass if "$HOME/.bashrc" doesn't exist --- .bash_profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index 7ff84cd..9808136 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,3 +1,4 @@ -export BASH_ENV="$HOME/.bashrc";source "$BASH_ENV" +if [ -f "$HOME/.bashrc" ];then export BASH_ENV="$HOME/.bashrc";source "$BASH_ENV";fi + finger m -- 1.8.3.1