Skip to content

Commit ff85408

Browse files
committed
ci: fix unused var warning in cmd/tools/vpm/common.v
1 parent 7c50fb1 commit ff85408

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/tools/vpm/common.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ fn get_all_modules() []string {
113113
// get the index of the end of module entry
114114
end_index := s.index_after(end_token, start_index) or { break }
115115
m := s[start_index..end_index]
116-
modules << s[start_index..end_index]
116+
modules << m
117117
read_len = end_index
118118
if read_len >= s.len {
119119
break

0 commit comments

Comments
 (0)