Skip to content

Commit 6ffc610

Browse files
committed
memo: Remove quotes in numeric comparison
1 parent af0789a commit 6ffc610

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

memo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ _cleanup() {
6565
printf "\r"
6666

6767
local i=${1:-0}
68-
while (( "$i" > 0 )); do
68+
while (( $i > 0 )); do
6969
printf "\r"
7070
i=$(( $i - 1 ))
7171
done

0 commit comments

Comments
 (0)