8 lines
126 B
Bash
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
|