Skip to content

Commit 708ef24

Browse files
committed
Fixup bash algebra to address codespell concern
1 parent 5070f47 commit 708ef24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gen_dockerfiles

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ print_verbose()
3636
if [ "$ae_verbose" -ge "$level" ]; then
3737
# use stderr for printing within functions stdout of which might be used
3838
echo -n "I: " >&2
39-
i=1; while [ $i -lt "$level" ]; do echo -ne " ">&2; i=$(($i+1)); done
39+
i=1; while [ $i -lt "$level" ]; do echo -ne " ">&2; i=$((i+1)); done
4040
echo -e "$*" >&2
4141
fi
4242
}

0 commit comments

Comments
 (0)