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

ci: fix v build-tools

This commit is contained in:
Delyan Angelov
2021-05-11 11:08:46 +03:00
parent 263e1ee4a4
commit 6f2c18f1c7
3 changed files with 2 additions and 3 deletions

View File

@@ -125,7 +125,7 @@ fn main() {
}
// webhook server mode
if flag_options.serve {
vweb.run<WebhookServer>(flag_options.port)
vweb.run<WebhookServer>(&WebhookServer{}, flag_options.port)
} else {
// cmd mode
mut gen_vc := new_gen_vc(flag_options)