diff --git a/app/prestart.sh b/app/prestart.sh index c3e5166..165c760 100644 --- a/app/prestart.sh +++ b/app/prestart.sh @@ -1,9 +1,7 @@ #! /usr/bin/env bash FILE=/app/app/config/app.db -if test -f "$FILE"; -then +if [ -f "$FILE" ]; then echo "$FILE exists." else - python3 setup.py - echo "ran setup" + python setup.py fi