You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qubes-linux-template-builder/builder_setup

16 lines
253 B

#!/bin/bash
# Setup env variables
SCRIPTSDIR=$TEMPLATE_SCRIPTS
if [ ! -d "$SCRIPTSDIR" ]; then
echo "Scripts directory $SCRIPTSDIR does not exists"
exit 1
fi
if [ -z "$CACHEDIR" ]; then
CACHEDIR=cache_$DIST
fi
export SCRIPTSDIR CACHEDIR