sconnect/lib/setup-env

20 lines
310 B
Text
Raw Normal View History

2024-06-02 22:13:33 +02:00
#!/bin/sh
set -e
2024-06-06 02:00:49 +02:00
if [ $SC_DEBUG ]; then
SC_LOGGER_LEVEL=0
echo "*** SC DEBUG ***"
fi
2024-06-02 22:13:33 +02:00
2024-06-06 02:00:49 +02:00
. $SC_LIB/variables
2024-06-02 22:13:33 +02:00
. $SC_LIB/headers
. $SC_LIB/logger
. $SC_LIB/manipulation
2024-06-06 02:00:49 +02:00
. $SC_LIB/privileges
for l in $SC_INCLUDE_LIBS; do
[ -f "$SC_LIB/$l" ] || continue
LOGD "including $l..."
. $SC_LIB/$l
done