From 7c8187c4a7563707d99a8881f3d549405763db49 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 22 May 2026 18:15:27 +0200 Subject: [PATCH] Change shell execution from sh to bash in Containerfile --- Containerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index b930f31..8cdd7bb 100644 --- a/Containerfile +++ b/Containerfile @@ -43,7 +43,10 @@ RUN --mount=type=bind,from=ctx,source=/,target=/ctx \ --mount=type=cache,dst=/var/cache \ --mount=type=cache,dst=/var/log \ --mount=type=tmpfs,dst=/tmp \ - for s in /ctx/build/*.sh; do echo "Running $s" && sh "$s" || exit 1; done + for s in /ctx/build/*.sh; do \ + echo "Running $s" && \ + bash "$s" || exit 1; \ + done ############################################################################### # CONFIGURATION LAYER (Der "saubere" Teil)