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

Merge branch 'main' into production

parents 6a1ea04f a064c286
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