Skip to content

Commit 2e31d19

Browse files
Use POSIX-compatible counter incrementing (#168)
1 parent a8513f9 commit 2e31d19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/install-package-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ while ! mysql --user="${USER}" "${PASSWORD_STRING}" --execute="SHOW DATABASES;"
5252
do
5353
echo 'Waiting for MySQL...'
5454
sleep 5
55-
let "i+=1"
55+
i=$((i+1))
5656
if [ $i -gt 36 ]; then
5757
echo 'MySQL failed to start. Aborting.'
5858
exit 1

0 commit comments

Comments
 (0)