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

ci: fix building

This commit is contained in:
Delyan Angelov
2020-12-19 13:16:18 +02:00
parent 2f1cc2bd08
commit 19bfd5ffb5
3 changed files with 12 additions and 3 deletions

View File

@@ -37,7 +37,10 @@ const (
)
fn main() {
timers_should_print := $if time_v ? { true } $else { false }
mut timers_should_print := false
$if time_v ? {
timers_should_print = true
}
mut timers := util.new_timers(timers_should_print)
timers.start('v total')
defer {