v cmd: no need to panic in case of an unknown command

pull/3513/head
S-YOU 2020-01-20 14:16:04 +09:00 committed by Alexander Medvednikov
parent d1664dc511
commit 9b3ac7efa4
1 changed files with 3 additions and 2 deletions

5
v.v
View File

@ -114,7 +114,7 @@ fn v_command(command string, args []string) {
compiler.create_symlink()
}
'runrepl' {
//TODO: remove this after 2020/02/01
// TODO: remove this after 2020/02/01
eprintln('`v runrepl` has been deprecated. Please use `v repl` instead.')
compiler.launch_tool('vrepl', 'runrepl')
}
@ -132,7 +132,8 @@ fn v_command(command string, args []string) {
// v.gen_doc_html_for_module(args.last())
}
else {
panic('v $command: unknown command\nRun "v help" for usage.')
eprintln('v $command: unknown command\nRun "v help" for usage.')
exit(1)
}
}
exit(0)