From e08cccb1f651f73f9eaf0d5d98099f9b1497eefc Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Fri, 30 Dec 2022 12:27:44 -0800 Subject: [PATCH] fix #1940 (#1942) --- mealie/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mealie/run.sh b/mealie/run.sh index 054a4676cdbf..d4d2944e90a0 100755 --- a/mealie/run.sh +++ b/mealie/run.sh @@ -59,7 +59,7 @@ else # Start API - if [ $WEB_GUNICORN == 'true' ]; then + if [ "$WEB_GUNICORN" == 'true' ]; then echo "Starting Gunicorn" gunicorn mealie.app:app -b 0.0.0.0:$GUNICORN_PORT -k uvicorn.workers.UvicornWorker -c /app/gunicorn_conf.py --preload else