Reverse order of zone arg array building

This commit is contained in:
Dan Albert
2019-04-05 11:28:00 -06:00
committed by Pankaj Garg
parent fe2fb40d88
commit 0c51f156ae
2 changed files with 3 additions and 3 deletions

View File

@@ -158,7 +158,7 @@ set -x
# Build a string to pass zone opts to $cloudProvider.sh: "-z zone1 -z zone2 ..."
for val in "${zone[@]}"; do
zone_args="-z $val $zone_args"
zone_args="-z $zone_args $val"
done
if ! $skipSetup; then