Files
Membarr/app/prestart.sh
Sleepingpirates 32ec3f91b6 Update prestart.sh
2020-06-18 02:57:58 -04:00

8 lines
126 B
Bash

#! /usr/bin/env bash
FILE=/app/app/config/app.db
if [ -f "$FILE" ]; then
echo "$FILE exists."
else
python setup.py
fi