1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v.pref: remove 'setting pref.path to ...' when given -v

This commit is contained in:
Delyan Angelov 2020-05-28 18:41:26 +03:00
parent da9b3d82d2
commit d70cd81875

View File

@ -301,9 +301,6 @@ pub fn parse_args(args []string) (&Preferences, string) {
res.build_mode = .build_module
res.path = args[command_pos + 1]
}
if res.is_verbose {
println('setting pref.path to "$res.path"')
}
res.fill_with_defaults()
return res, command
}