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

vfmt fixes

This commit is contained in:
yuyi
2020-02-16 19:42:28 +08:00
committed by GitHub
parent 9eeb3dfe7e
commit e272a10bda
8 changed files with 92 additions and 33 deletions

View File

@@ -22,8 +22,8 @@ pub fn main() {
}
args_to_executable := args[1..]
args_before := cmdline.before(args_to_executable, ['test'])
args_after := cmdline.after(args_to_executable, ['test'])
args_before := cmdline.options_before(args_to_executable, ['test'])
args_after := cmdline.options_after(args_to_executable, ['test'])
if args_after.join(' ') == 'v' {
eprintln('`v test v` has been deprecated.')
@@ -53,4 +53,3 @@ pub fn main() {
exit(1)
}
}