mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
ci: fix unused var warning in cmd/tools/vpm/common.v
This commit is contained in:
parent
7c50fb1655
commit
ff85408722
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ fn get_all_modules() []string {
|
|||
// get the index of the end of module entry
|
||||
end_index := s.index_after(end_token, start_index) or { break }
|
||||
m := s[start_index..end_index]
|
||||
modules << s[start_index..end_index]
|
||||
modules << m
|
||||
read_len = end_index
|
||||
if read_len >= s.len {
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue