spiderweb/test.sh

22 lines
225 B
Bash
Raw Normal View History

2023-01-07 22:15:43 +00:00
if [ $# -gt 0 ]
then
2022-02-05 07:49:31 +00:00
cd scripts || exit
2023-01-07 22:15:43 +00:00
if ! ./build.sh ${1}
then
cd ..
echo "terminated"
exit 1
fi
2021-11-28 17:31:32 +00:00
cd ..
fi
2023-01-07 22:15:43 +00:00
if [ "$1" == "-d" ]; then
flask --app webapp.py --debug run
else
flask --app webapp.py run
fi
2021-11-28 17:31:32 +00:00