Skip to content
Snippets Groups Projects
Commit 7fa1d83a authored by Ole Langbehn's avatar Ole Langbehn
Browse files

Merge branch 'main' into production

parents d1bac2c9 a42bc0eb
No related branches found
Tags release/1.36.0
No related merge requests found
#!/usr/bin/env bash
#!/usr/bin/env sh
# exit when any command fails
set -ex
......@@ -12,7 +12,7 @@ export TF_LOG=DEBUG
# * GCP stuff not allowing our resources to be deleted.
# Most of the time, retrying a destroy fixes these causes.
retry() {
for i in {1..3}; do
for i in $(seq 1 3); do
set +e
"$@"
retval=$?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment