From a13c519c36c515d246684ee3ec59a5dc74e9eb22 Mon Sep 17 00:00:00 2001 From: John D Pell <52194+gaelicWizard@users.noreply.github.com> Date: Fri, 25 Jun 2021 10:04:07 -0700 Subject: [PATCH] Move $PRF to configuration section Move the $PRF variable up to the configuration section near $EXPORT_FUNCTIONS --- bashrc_dispatch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashrc_dispatch b/bashrc_dispatch index bd3e15e..790b296 100644 --- a/bashrc_dispatch +++ b/bashrc_dispatch @@ -14,6 +14,7 @@ # in other scripts. EXPORT_FUNCTIONS=true +PRF="${HOME}/." # Code # ---- @@ -64,7 +65,6 @@ if $EXPORT_FUNCTIONS ; then fi # Now dispatch special files -PRF="${HOME}/." [ -f "${PRF}bashrc_once" ] && [ -z "$BRCD_RANONCE" ] && . "${PRF}bashrc_once" && export BRCD_RANONCE=true [ -f "${PRF}bashrc_all" ] && . "${PRF}bashrc_all"