Skip to content

Commit eee07f7

Browse files
authored
Merge pull request #492 from jhujhiti/upstreaming
Fix quoting of exec argument in the entrypoint script
2 parents a5da382 + 6e7d5a6 commit eee07f7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docker/docker-entrypoint.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,4 @@ echo "✅ Initialisation is done."
6868

6969
# Launch whatever is passed by docker
7070
# (i.e. the RUN instruction in the Dockerfile)
71-
#
72-
# shellcheck disable=SC2068
73-
exec $@
71+
exec "$@"

0 commit comments

Comments
 (0)