From f26c6c627a3cb31b3f3ea89f4a6c1fcfb72592ea Mon Sep 17 00:00:00 2001 From: miampf Date: Wed, 20 Mar 2024 16:27:34 +0100 Subject: [PATCH] tidy --- .github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh index d1f9c9536..ae42647ee 100755 --- a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh +++ b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh @@ -60,11 +60,11 @@ for d in "${dates_to_clean[@]}"; do done # cleanup database_ids -mapfile -t database_ids <<<"$database_ids" +mapfile -t database_ids <<< "$database_ids" echo "[*] downloading terraform state artifacts" for id in "${database_ids[@]}"; do - if [[ -n "$id" ]]; then + if [[ -n $id ]]; then echo " downloading from workflow $id" download_tfstate_artifact "$id" fi