Skip to content

Commit 67ab637

Browse files
Roozbeh FarahbodRoozbeh Farahbod
authored andcommitted
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.
1 parent 7bd41cb commit 67ab637

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ http_username = ${GITLAB_HTTP_USERNAME}
1818
http_password = ${GITLAB_HTTP_PASSWORD}
1919
EOF
2020

21-
exec gitlab --config-file "${GITLAB_CFG}" $@
21+
exec gitlab --config-file "${GITLAB_CFG}" "$@"

0 commit comments

Comments
 (0)