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

vdoc: fix -p PORT option

This commit is contained in:
Delyan Angelov 2020-12-15 17:21:57 +02:00
parent a4d3a0575a
commit 560c21629e
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -972,7 +972,7 @@ fn main() {
i++
}
'-p' {
s_port := cmdline.option(current_args, '-o', '')
s_port := cmdline.option(current_args, '-p', '')
s_port_int := s_port.int()
if s_port.len == 0 {
eprintln('vdoc: No port number specified on "-p".')
@ -983,6 +983,7 @@ fn main() {
exit(1)
}
cfg.server_port = s_port_int
i++
}
'-s' {
cfg.inline_assets = true