From 67ab6371e69fbf137b95fd03105902206faabdac Mon Sep 17 00:00:00 2001 From: Roozbeh Farahbod Date: Tue, 4 Dec 2018 13:07:19 +0100 Subject: [PATCH] fix: docker entry point argument passing Fixes the problem of passing spaces in the arguments to the docker entrypoint. Before this fix, there was virtually no way to pass spaces in arguments such as task description. --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 6422ad095..bda814171 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -18,4 +18,4 @@ http_username = ${GITLAB_HTTP_USERNAME} http_password = ${GITLAB_HTTP_PASSWORD} EOF -exec gitlab --config-file "${GITLAB_CFG}" $@ +exec gitlab --config-file "${GITLAB_CFG}" "$@"