Workflow indication

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle
2015-09-21 09:37:33 -04:00
parent 6cc7833635
commit 87fc602d5a
+12
View File
@@ -17,6 +17,18 @@ if [ $# -eq 0 ] ; then
exit 1
fi
cat <<END
Please ensure that you have updated data/themes.py in the website code before running this script.
Continue (y/n)?
END
read do_release
if [ "$do_release" != 'y' ]; then
exit 100
fi
THEME="${1%/}"
if [ ! -d "$THEME" ] ; then
echo "Directory $THEME does not exist!"