X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Ffunctions.sh;h=e1efcc1845234e71f9c4784b4c2f38560d515970;hb=2a1d012416ed4c6ca1ccfdbdab5f50b163c59f91;hp=d25e71d7b03ad9e7362b4f01aa7bed32e891995f;hpb=6f6cc76fec8dbdeeebff1b877304de4655475586;p=feisty_meow.git diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index d25e71d7..e1efcc18 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -4,18 +4,16 @@ # test whether we've been here before or not. skip_all= -date_stringer &>/dev/null +function_sentinel &>/dev/null if [ $? -eq 0 ]; then # there was no error, so we can skip the inits. -# if [ ! -z "$SHELL_DEBUG" ]; then + if [ ! -z "$SHELL_DEBUG" ]; then echo skipping functions.sh because already defined. -# fi + fi + skip_all=yes fi -echo proceeding to run functions.sh - if [ -z "$skip_all" ]; then - if [ ! -z "$SHELL_DEBUG" ]; then echo function definitions begin... fi @@ -207,6 +205,8 @@ if [ -z "$skip_all" ]; then nechung fi } + + function function_sentinel() { return 0; } if [ ! -z "$SHELL_DEBUG" ]; then echo function definitions end....; fi