diff options
author | emkael <emkael@tlen.pl> | 2022-02-19 16:03:22 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2022-02-19 16:03:22 +0100 |
commit | 1e05bb4e3a58ab0d817634d46499db47faad5022 (patch) | |
tree | a4238fe51776b0f100588504d9314d35ff142494 | |
parent | 1b4d08b078217bfb40e9f3ef110306981f3a0191 (diff) |
Enabling cronjobs, it's game time
-rw-r--r-- | _cron/autocommit | 6 | ||||
-rw-r--r-- | _cron/playoff | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/_cron/autocommit b/_cron/autocommit index 52e9ad0..d7c866a 100644 --- a/_cron/autocommit +++ b/_cron/autocommit @@ -1,3 +1,3 @@ -# SHELL=/bin/bash -# */10 * * * * cd $SITEPATH && source .envrc && make autocommit >> $SITEPATH/_log/autocommit.log -# SHELL=/bin/sh +SHELL=/bin/bash +*/3 * * * * cd $SITEPATH && source .envrc && make autocommit >> $SITEPATH/_log/autocommit.log +SHELL=/bin/sh diff --git a/_cron/playoff b/_cron/playoff index 60d3f09..18dc3b1 100644 --- a/_cron/playoff +++ b/_cron/playoff @@ -1,3 +1,3 @@ -# SHELL=/bin/bash -# */5 * * * * cd $SITEPATH && source .envrc && make brackets > $SITEPATH/_log/playoff.log 2>&1 -# SHELL=/bin/sh +SHELL=/bin/bash +*/3 * * * * cd $SITEPATH && source .envrc && make brackets > $SITEPATH/_log/playoff.log 2>&1 +SHELL=/bin/sh |