This commit is contained in:
miampf 2024-03-27 12:53:02 +01:00
parent ebaaaa1b9f
commit 6d177c5231
No known key found for this signature in database
GPG Key ID: EF039364B5B6886C

View File

@ -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