This commit is contained in:
miampf 2024-03-20 16:27:34 +01:00
parent f1de3cf164
commit f26c6c627a
No known key found for this signature in database
GPG Key ID: EF039364B5B6886C

View File

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