From e48db1ca4ca91d82db8073c0aaea9da3d86339bd Mon Sep 17 00:00:00 2001 From: Sisyphus Date: Fri, 24 Apr 2026 20:05:31 -0300 Subject: [PATCH] Fix entrypoint to use shell for command execution --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1db152b..3286deb 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,4 +2,5 @@ if [ -n "$HERMES_SOUL_OVERRIDE" ]; then echo "$HERMES_SOUL_OVERRIDE" > /opt/data/.hermes/SOUL.md fi -exec "$@" + +exec /bin/sh -c "$*"