Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xds interop: Fix buildscripts not continuing on a failed test suite (#…
…9833) (#9834) Apparently there's a difference between bash 3 and bash 4. OSX comes with bash 3 out-of-box, so for whoever wrote this logic it "worked on my machine". The `((` construct returns a 0 exit code if the value is non-zero. Since the value starts at 0 and we do a post-increment, it will always fail the first time. Changing it to a pre-increment fixes the problem.
- Loading branch information