rrthomas / DarkGlass

Simple CMS that publishes a directory tree
https://rrthomas.github.io/DarkGlass
Other
1 stars 1 forks source link

install.sh: Missing `exit 1`s #13

Closed apt1002 closed 1 year ago

apt1002 commented 1 year ago
if [ ! -d "$DOCUMENT_ROOT_DIR" ]; then
    echo "DOCUMENT-ROOT-DIR must be a directory"
    exit 1
fi
if [ ! -d "$INSTALL_DIR" ]; then
    echo "INSTALL-DIR must be a directory"
    exit 1
fi