vdoc: fix `-p PORT` option

pull/7351/head
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
1 changed files with 2 additions and 1 deletions

View File

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