From c47ad8b82a52a5648bdabfd8713ba0dda3df2c16 Mon Sep 17 00:00:00 2001 From: a1346054 <36859588+a1346054@users.noreply.github.com> Date: Tue, 13 Sep 2022 19:59:01 +0000 Subject: tests: fix underquoting --- test/environment/output.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/environment/output.sh') diff --git a/test/environment/output.sh b/test/environment/output.sh index 329cb40c7..0872dc276 100755 --- a/test/environment/output.sh +++ b/test/environment/output.sh @@ -5,8 +5,8 @@ i="0" -while [ $i -lt 150000 ] +while [ $i -lt 150000 ] do - echo message number $i - i=$[$i+1] + echo "message number $i" + i=$((i+1)) done -- cgit v1.2.3-54-g00ecf