fix: route.sh to also source other lib files

This commit is contained in:
2026-06-22 09:35:00 +05:30
parent 57a11e16a3
commit 9ce16a1f2b
2 changed files with 3 additions and 39 deletions

View File

@@ -11,9 +11,11 @@ if [ ! -d "$BOOTSTRAP_DIR/lib" ]; then
fi
export BOOTSTRAP_DIR
# Source common library
# Source libraries
if [ -f "$BOOTSTRAP_DIR/lib/common.sh" ]; then
. "$BOOTSTRAP_DIR/lib/common.sh"
. "$BOOTSTRAP_DIR/lib/platform.sh"
. "$BOOTSTRAP_DIR/lib/shell_config.sh"
else
echo "Error: Bootstrap libraries not found at $BOOTSTRAP_DIR/lib/" >&2
exit 1