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

vweb: make thread safe; checker: $if T is Interface {

This commit is contained in:
Alexander Medvednikov
2021-05-11 09:30:01 +03:00
parent e310513a5f
commit dc034d9b16
17 changed files with 348 additions and 178 deletions

View File

@@ -22,7 +22,7 @@ fn main() {
println('failed to git pull. uncommitted changes?')
return
}
// println('running fast')
// println('running ./fast')
resp := os.execute('./fast')
if resp.exit_code < 0 {
println(resp.output)
@@ -38,6 +38,6 @@ fn main() {
os.system('git push origin gh-pages')
os.chdir('..')
}
time.sleep(60 * time.second)
time.sleep(180 * time.second)
}
}