mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
fix(installation): loop to max_len-1
avoid `i` going outside range of array indices
This commit is contained in:
parent
0ea42f60bd
commit
4bdd3c036b
@ -99,7 +99,7 @@ function vercomp() {
|
||||
done
|
||||
fi
|
||||
|
||||
for i in `seq 0 $max_len`
|
||||
for i in `seq 0 $((max_len-1))`
|
||||
do
|
||||
# Fill empty fields with zeros in v1
|
||||
if [ -z "${v1[$i]}" ]
|
||||
|
Loading…
Reference in New Issue
Block a user