mirror of
https://github.com/vlang/v.git
synced 2025-09-24 04:48:28 -04:00
pref: do not allow -o .v
This commit is contained in:
parent
ac0fee8e64
commit
99c70cf9c6
@ -244,6 +244,10 @@ pub fn parse_args(args []string) (&Preferences, string) {
|
|||||||
}
|
}
|
||||||
'-o' {
|
'-o' {
|
||||||
res.out_name = cmdline.option(current_args, '-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++
|
i++
|
||||||
}
|
}
|
||||||
'-b' {
|
'-b' {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user