Skip to content

Commit c67a1b6

Browse files
committed
chore: fix cleaning up of the temporary files
Correction for e59534e commit Part of #1631 [skip ci]
1 parent bde5531 commit c67a1b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/provision-by-terraform.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
if: always()
106106
working-directory: infra/terraform
107107
run: |
108-
for FILENAME in vault-pass.txt terraform.tfplan terraform-data/terraform.tfstate terraform-data/terraform.tfvars; do
108+
for FILE in vault-pass.txt terraform.tfplan terraform-data/terraform.tfstate terraform-data/terraform.tfvars; do
109109
[ ! -f "$FILE" ] || rm -fv "$FILE"
110110
done
111111
[ ! -d terraform-data ] || git worktree remove terraform-data

0 commit comments

Comments
 (0)