diff options
author | 2021-09-09 18:42:42 +0100 | |
---|---|---|
committer | 2021-09-09 18:42:42 +0100 | |
commit | 178685908a2d9a01ab4fb20b5fd3a5b99068daef (patch) | |
tree | af0717e76f4b0b8f4bb440f8ceee1563e6d480b9 | |
parent | Use case-insentivite compare to true to determine metricity skip (diff) |
Capitalise SKIP_METRICITY env var name
-rw-r--r-- | entry_point.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/entry_point.sh b/entry_point.sh index 8375d36..cf101da 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 [ "$SKIP_METRICITY" != "true" ]; then poetry run start fi |