diff --git a/cmd/tools/fast/fast_job.v b/cmd/tools/fast/fast_job.v index 5c8c3c927c..2eb108ae15 100644 --- a/cmd/tools/fast/fast_job.v +++ b/cmd/tools/fast/fast_job.v @@ -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) } }