scripts/deploy: build all hosts before building all variants

This commit is contained in:
2024-06-21 07:03:27 +00:00
parent 815ce6287f
commit ad8bcfc09e

View File

@@ -165,8 +165,8 @@ deployOneHost() {
parseArgs "$@"
failedDeploys=()
for h in "${hosts[@]}"; do
for v in "${variants[@]}"; do
for v in "${variants[@]}"; do
for h in "${hosts[@]}"; do
deployOneHost "$h" "$v" || \
failedDeploys+=("$h$v")
done