From 3cdd4a8cd8dfd83d9a3737ed0791ab150c8e9705 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Wed, 3 Dec 2025 12:53:02 +0300 Subject: [PATCH] Change exec command to use bash with arguments --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 2504a57..1fc59d1 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,4 +4,5 @@ /bin/bash /workdir/zephyr-sdk-${ZEPHYR_TAG}/setup.sh -t arm-zephyr-eabi /bin/bash /workdir/zephyr-sdk-${ZEPHYR_TAG}/setup.sh -c -exec $@ +# exec $@ +exec bash -c "$@"