Skip to content

Commit 553b33e

Browse files
committed
melting-pot: tweak while condition
I like "> 0" aesthetically more than ">= 1".
1 parent 3059bcf commit 553b33e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

melting-pot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ unknownArg() {
9999
}
100100

101101
parseArguments() {
102-
while [ $# -ge 1 ]
102+
while [ $# -gt 0 ]
103103
do
104104
case "$1" in
105105
-b|--branch)

0 commit comments

Comments
 (0)