From df35d61170c5dcbb2e64fd5fdcd3d449335231e9 Mon Sep 17 00:00:00 2001 From: technofab Date: Mon, 2 Jun 2025 22:15:44 +0200 Subject: [PATCH] fix(sandbox_helper): remove '' --- lib/sandbox_helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sandbox_helper.sh b/lib/sandbox_helper.sh index df69d97..4ea5ec5 100644 --- a/lib/sandbox_helper.sh +++ b/lib/sandbox_helper.sh @@ -61,8 +61,8 @@ if [ "$NO_SANDBOX" = false ]; then env -i $( if [[ -n "$KEEP_ENV" ]]; then IFS=',' read -ra VARS <<< "$KEEP_ENV" - for var in "''${VARS[@]}"; do - printf '%s=%q ' "$var" "''${!var}" + for var in "${VARS[@]}"; do + printf '%s=%q ' "$var" "${!var}" done fi ) bash $actualJobScript