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

tools/fast: run the job every minute

This commit is contained in:
Alexander Medvednikov 2021-02-07 04:00:58 +01:00
parent 9f59b04e86
commit 32cd2846f5

View File

@ -21,7 +21,7 @@ fn main() {
println('failed to git pull. uncommitted changes?')
return
}
println('running fast')
// println('running fast')
resp := os.exec('./fast') or {
println(err)
return
@ -36,7 +36,7 @@ fn main() {
os.system('git push origin gh-pages')
os.chdir('..')
}
println('sleeping 20')
time.sleep(20)
// println('sleeping 60')
time.sleep(60)
}
}