Skip to content

Commit

Permalink
fix: fix entrypoint script for compatiblity with cli arguments (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreat authored and briancorbin committed Dec 2, 2022
1 parent e27cc5d commit 36a36b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .internal-ci/docker/entrypoints/full-service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mkdir -p "$(dirname "${MC_WALLET_DB}")"
# If so execute with full-service for compatibility with the previous container/cli arg only configuration.
if [[ "${1}" =~ ^--.* ]]
then
exec "/usr/local/bin/full-service $*"
exec "/usr/local/bin/full-service" "$@"
else
exec "$@"
fi

0 comments on commit 36a36b3

Please sign in to comment.