From 1150b14f8a9124cc01ff9709f87f4056509357b5 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Fri, 12 Dec 2025 18:00:06 -0800 Subject: [PATCH] Verbose --- docker/server/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/server/entrypoint.sh b/docker/server/entrypoint.sh index 6e18429dd..de4819a49 100644 --- a/docker/server/entrypoint.sh +++ b/docker/server/entrypoint.sh @@ -63,7 +63,7 @@ WORK_DIR="/tmp/processed" mkdir -p "$WORK_DIR" echo "Copying files to working directory..." -cp -r /app/. "$WORK_DIR"/. +cp -vr /app/. "$WORK_DIR"/. # Find all files in the working directory that contain a STACK_ENV_VAR_SENTINEL and extract the unique sentinel strings. unhandled_sentinels=$(find "$WORK_DIR/apps" -type f -exec grep -l "STACK_ENV_VAR_SENTINEL" {} + | \