Files
Membarr/app/prestart.sh
2020-06-18 02:49:23 -04:00

10 lines
149 B
Bash

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