diff --git a/bashrc_dispatch b/bashrc_dispatch index bd3e15e..b160ad0 100644 --- a/bashrc_dispatch +++ b/bashrc_dispatch @@ -66,7 +66,10 @@ fi # Now dispatch special files PRF="${HOME}/." -[ -f "${PRF}bashrc_once" ] && [ -z "$BRCD_RANONCE" ] && . "${PRF}bashrc_once" && export BRCD_RANONCE=true +if [ -f "${PRF}bashrc_once" ] && [ -z "$BRCD_RANONCE" ]; then + export BRCD_RANONCE=true + . "${PRF}bashrc_once" +fi [ -f "${PRF}bashrc_all" ] && . "${PRF}bashrc_all" [ -f "${PRF}bashrc_script" ] && shell_is_script && . "${PRF}bashrc_script" [ -f "${PRF}bashrc_interactive" ] && shell_is_interactive && . "${PRF}bashrc_interactive"