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

pref: do not allow -o .v

This commit is contained in:
Alexander Medvednikov 2020-06-03 09:03:43 +02:00
parent ac0fee8e64
commit 99c70cf9c6

View File

@ -244,6 +244,10 @@ pub fn parse_args(args []string) (&Preferences, string) {
}
'-o' {
res.out_name = cmdline.option(current_args, '-o', '')
if res.out_name.ends_with('.v') {
eprintln('Cannot save output binary in a .v file.')
exit(1)
}
i++
}
'-b' {