File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ fn vpm_install(requested_modules []string, opts []string) {
69
69
if already_installed.len > 0 {
70
70
verbose_println ('Already installed modules: ${already_installed} ' )
71
71
if already_installed.len == modules.len {
72
- verbose_println ('All modules are already installed.' )
72
+ println ('All modules are already installed.' )
73
73
exit (0 )
74
74
}
75
75
}
Original file line number Diff line number Diff line change @@ -67,14 +67,13 @@ fn main() {
67
67
// args are: vpm [options] SUBCOMMAND module names
68
68
params := cmdline.only_non_options (os.args[1 ..])
69
69
options := cmdline.only_options (os.args[1 ..])
70
- verbose_println ( 'cli params: ${params} ' )
70
+ // dump( params)
71
71
if params.len < 1 {
72
72
help.print_and_exit ('vpm' , exit_code: 5 )
73
73
}
74
74
vpm_command := params[0 ]
75
75
mut requested_modules := params[1 ..].clone ()
76
76
ensure_vmodules_dir_exist ()
77
- // println('module names: ') println(requested_modules)
78
77
match vpm_command {
79
78
'help' {
80
79
help.print_and_exit ('vpm' )
You can’t perform that action at this time.
0 commit comments