Browse Source

Fix a shell variable increment that was accidentally executed

teor 7 years ago
parent
commit
ee77717670
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/test-network.sh

+ 1 - 1
tools/test-network.sh

@@ -303,7 +303,7 @@ if [ "$CHUTNEY_BOOTSTRAP_TIME" -ge 0 ]; then
           -a "$VERIFY_EXIT_STATUS" -eq 0 ]; do
       "$CHUTNEY" verify "$CHUTNEY_NETWORK"
       VERIFY_EXIT_STATUS="$?"
-      $[n_rounds++]
+      n_rounds=$[n_rounds+1]
   done
   $ECHO "Completed $n_rounds of $CHUTNEY_ROUNDS verify rounds."
 else