Update prestart.sh

This commit is contained in:
Sleepingpirates
2020-06-18 02:57:58 -04:00
committed by GitHub
parent 98a190c8a0
commit 32ec3f91b6

View File

@@ -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