X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=bash%2Fprofile;h=4c2555220e614eb573cfe8cacc2dff1e06fa7ea4;hb=2a542e569e62cb7618ab485759ea7994385b5ddd;hp=3c62d60c904dff56d528eac84d671b3fb1ed2e0c;hpb=0d1c3c96beca1d3667df0fc7985423fab82d8086;p=config%2Fdotfiles.git diff --git a/bash/profile b/bash/profile index 3c62d60..4c25552 100644 --- a/bash/profile +++ b/bash/profile @@ -1,5 +1,9 @@ # Bash login configuration file. -# Load ~/.bashrc. -. ~/.bashrc +# Load ~/.bashrc if it exists. +if [[ -f ~/.bashrc ]]; then + . ~/.bashrc +fi + +# vim: ft=sh