From 32ec3f91b6f55703768d475649ff6a33d93b808e Mon Sep 17 00:00:00 2001 From: Sleepingpirates <32914211+Sleepingpirates@users.noreply.github.com> Date: Thu, 18 Jun 2020 02:57:58 -0400 Subject: [PATCH] Update prestart.sh --- app/prestart.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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