From b64c82921e02d3be5de21a8a971c44279650399c Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Mon, 1 Oct 2018 14:06:12 +0200 Subject: [PATCH] Need quotes around export? --- scripts/common_startup_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common_startup_functions.sh b/scripts/common_startup_functions.sh index 4b4575b2f56..2ee598572b4 100644 --- a/scripts/common_startup_functions.sh +++ b/scripts/common_startup_functions.sh @@ -159,7 +159,7 @@ find_server() { pid_log_paster_args="" elif [ "$APP_WEBSERVER" = "gunicorn" ]; then - export GUNICORN_CMD_ARGS=${GUNICORN_CMD_ARGS:-"--bind=localhost:8080"} + export GUNICORN_CMD_ARGS="${GUNICORN_CMD_ARGS:-\"--bind=localhost:8080\"}" server_args="$APP_WEBSERVER --pythonpath lib --paste \"$server_config\"" else run_server="python"