From cd87e4fa29e6275ea19a917911892ae6b888b79c Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Mon, 3 Oct 2022 16:40:45 -0400 Subject: [PATCH] Double-quote to prevent PROD_PORT globbing. --- start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start b/start index 30effd8..75406f5 100755 --- a/start +++ b/start @@ -23,7 +23,7 @@ fi if [[ "$1" == "prod" ]]; then echo "Starting gunicorn production server..." - gunicorn -b localhost:$PROD_PORT "app:create_app()" + gunicorn -b "localhost:$PROD_PORT" "app:create_app()" else echo "Starting local dev server..." export FLASK_APP=app