vpm: fix show command (#11093)
parent
7a67a08d2f
commit
52a3360a47
|
@ -585,7 +585,7 @@ Installed: False
|
||||||
')
|
')
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
path := os.join_path(os.vmodules_dir(), module_name)
|
path := os.join_path(os.vmodules_dir(), module_name.replace('.', os.path_separator))
|
||||||
mod := vmod.from_file(os.join_path(path, 'v.mod')) or { continue }
|
mod := vmod.from_file(os.join_path(path, 'v.mod')) or { continue }
|
||||||
print('Name: $mod.name
|
print('Name: $mod.name
|
||||||
Version: $mod.version
|
Version: $mod.version
|
||||||
|
|
Loading…
Reference in New Issue