From 6d177c5231cf95257205ce77c4fdce711373392a Mon Sep 17 00:00:00 2001 From: miampf Date: Wed, 27 Mar 2024 12:53:02 +0100 Subject: [PATCH] tidy --- .github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh index 102338ea2..95ab04a29 100755 --- a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh +++ b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh @@ -63,7 +63,7 @@ mapfile -td " " database_ids < <(echo "${database_ids[@]}") echo "[*] downloading terraform state artifacts" for id in "${database_ids[@]}"; do - if [[ "$id" = *[^[:space:]]* ]]; then + if [[ $id == *[^[:space:]]* ]]; then echo " downloading from workflow $id" download_tfstate_artifact "$id" fi