From a69074c302ee9b27f984c91b668aadd1a9e845c3 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 6 Feb 2026 10:37:31 +0100 Subject: [PATCH] test(e2e): replace ls with find to satisfy shellcheck SC2012 --- scripts/test-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-e2e.sh b/scripts/test-e2e.sh index 79da6d6..657038a 100755 --- a/scripts/test-e2e.sh +++ b/scripts/test-e2e.sh @@ -97,7 +97,7 @@ dump_debug() { docker -H "${DIND_HOST}" rm -f "${tmpc}" >/dev/null 2>&1 || true log "DEBUG: artifacts written:" - ls -la "${ARTIFACTS_DIR}" | sed 's/^/ /' || true + find "${ARTIFACTS_DIR}" -maxdepth 1 -mindepth 1 -print | sed 's/^/ /' || true } cleanup() {