Fix quoting of exec argument in the entrypoint script

This commit is contained in:
Erick Turnquist 2021-04-15 12:18:00 -04:00 committed by Erick Turnquist
parent a5da38203f
commit 6e7d5a6f59
1 changed files with 1 additions and 3 deletions

View File

@ -68,6 +68,4 @@ echo "✅ Initialisation is done."
# Launch whatever is passed by docker
# (i.e. the RUN instruction in the Dockerfile)
#
# shellcheck disable=SC2068
exec $@
exec "$@"