Fix entrypoint.sh again
continuous-integration/drone/tag Build is passing Details
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luca 2023-10-17 01:40:16 +02:00
parent 5934705dc7
commit 12237d736e
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ rm -rf /app/static/*
python manage.py collectstatic
python manage.py migrate
if [ -z "$1" ] || [ "${1%-}" != "$1" ]
if [ -z "$1" ] || [ "${1#-}" != "$1" ]
then
exec gunicorn ljg.wsgi "$@"
fi