From 7d34edb493d373eb28c43dbe150f936853944a7c Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 22 Dec 2018 12:34:18 -0500 Subject: lib/load.sh: Neuter ob_use(), don't load modules --- (limited to 'lib/load.sh') diff --git a/lib/load.sh b/lib/load.sh index e0fe366..7cdaf5f 100644 --- a/lib/load.sh +++ b/lib/load.sh @@ -22,7 +22,7 @@ _OB_LOAD_SM=1 # The "common" module is used by this and all other modules. # We have to manually load the "common" module so we can use it in ob_use. -. "${PKGLIBDIR}/common.sho" +# . "${PKGLIBDIR}/common.sho" ob_use() { @@ -36,7 +36,7 @@ ob_use() module="${PKGLIBDIR}/${module}.sho" if [ -r "${module}" ]; then - . "${module}" + : . "${module}" else return 1 fi -- cgit v0.9.1