diff options
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/files/dot-bash_profile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app-shells/bash/files/dot-bash_profile b/app-shells/bash/files/dot-bash_profile index 94a6622b5c67..1de05a45e34a 100644 --- a/app-shells/bash/files/dot-bash_profile +++ b/app-shells/bash/files/dot-bash_profile @@ -2,4 +2,6 @@ # This file is sourced by bash for login shells. The following line # runs your .bashrc and is recommended by the bash info pages. -[[ -f ~/.bashrc ]] && . ~/.bashrc +if [[ -f ~/.bashrc ]] ; then + . ~/.bashrc +fi |