From 32cd2846f5306777860345a554f81e389a074113 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 7 Feb 2021 04:00:58 +0100 Subject: [PATCH] tools/fast: run the job every minute --- cmd/tools/fast/fast_job.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) } }