Don't escape quotes

Co-authored-by: Nicola Soranzo <nicola.soranzo@gmail.com>
This commit is contained in:
Marius van den Beek
2022-02-23 15:43:32 +01:00
committed by GitHub
co-authored by Nicola Soranzo
parent b439675a38
commit bcbdb9184e
+2 -2
View File
@@ -163,10 +163,10 @@ find_server() {
;;
reports)
# TODO: is this really the only way to configure the port?
GUNICORN_CMD_ARGS=${GUNICORN_CMD_ARGS:-\"--bind=localhost:9001\"}
GUNICORN_CMD_ARGS=${GUNICORN_CMD_ARGS:-"--bind=localhost:9001"}
;;
tool_shed)
GUNICORN_CMD_ARGS=${GUNICORN_CMD_ARGS:-\"--bind=localhost:9009\"}
GUNICORN_CMD_ARGS=${GUNICORN_CMD_ARGS:-"--bind=localhost:9009"}
esac
APP_WEBSERVER=${APP_WEBSERVER:-$default_webserver}