Hugh Saunders 02c555ae0b Fix command not found in scripts lib
The successorator originally incremented RETRY with ((RETRY++)).
Bashate decided that was an ambiguous redirect  (why?, I don't care
about the output, I just want the variable to incremented). As a result
we changed the increment statement to $((RETRY++)), this increments the
variable, then tries to execute it, so the log contains:

"scripts/scripts-library.sh: line 51: 1: command not found"

I was going to add _=$((RETRY++)) but its getting ugly, so I replaced
the while loop with a c-style for loop that allows the increment
operator in the third statement.

Change-Id: I3db03dcefbcbe2b4c51e414f9fd2fee73e16a62e
2016-03-16 06:55:15 +00:00
..
2016-02-11 22:46:02 +00:00
2016-01-29 09:47:41 -06:00
2015-08-21 15:44:05 +00:00