summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-03-14 17:36:38 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2009-03-14 17:36:38 +0100
commitfc59c45daf27ef33f205d55960f64e2b0fa7b0fe (patch)
treed1e56b75fd0bd1e088efbafa28132aedd089a5f5 /src
parent0daf3b0a8f4ca33d7146c94cd840131a97896b9b (diff)
load lib-misc early so debugging works
Diffstat (limited to 'src')
-rwxr-xr-xsrc/aif.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/aif.sh b/src/aif.sh
index 3aaaca0..a4f2d8b 100755
--- a/src/aif.sh
+++ b/src/aif.sh
@@ -17,7 +17,8 @@ LOGFILE=$LOG_DIR/aif.log
source $LIB_CORE/libs/lib-ui.sh || ( echo "Something went wrong while sourcing library $LIB_CORE/libs/lib-ui.sh" >&2 && exit 2)
# load the lib-flowcontrol. we also need some of it's functions early (like usage()).
source $LIB_CORE/libs/lib-flowcontrol.sh || ( echo "Something went wrong while sourcing library $LIB_CORE/libs/lib-flowcontrol.sh" >&2 && exit 2)
-
+# lib-misc. we need it early, at least for check_is_in whis is used by the debug function.
+source $LIB_CORE/libs/lib-misc.sh || ( echo "Something went wrong while sourcing library $LIB_CORE/libs/lib-misc.sh" >&2 && exit 2)
# default function to process additional arguments. can be overridden by procedures.
process_args ()