aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-09-11 19:30:55 +0100
committerGravatar GitHub <[email protected]>2021-09-11 19:30:55 +0100
commitbd6b34aefb4011fd1b8d2ad501f8c5b435900e58 (patch)
tree7ddf235ec00b49a5557bcdbbbe253cf8a784b2af
parentMerge pull request #7 from python-discord/metricity-creates-own-database (diff)
parentRemove double negative from env var (diff)
Merge pull request #8 from python-discord/remove-double-negative-from-env-var
Remove double negative from env var
-rw-r--r--entry_point.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/entry_point.sh b/entry_point.sh
index cf101da..c1a217a 100644
--- a/entry_point.sh
+++ b/entry_point.sh
@@ -4,6 +4,6 @@ python create_metricity_db.py
alembic upgrade head
shopt -s nocasematch
-if [ "$SKIP_METRICITY" != "true" ]; then
+if [ "${USE_METRICITY:-true}" = "true" ]; then
poetry run start
fi