From 78ab9ca0478a18e30749a6e2cdd461d212711a18 Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Mon, 3 Nov 2025 11:46:59 -0500 Subject: [PATCH] fix: update crontab to use correct time --- scripts/crontab | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/crontab b/scripts/crontab index 6f1a9e6..a364df2 100644 --- a/scripts/crontab +++ b/scripts/crontab @@ -1,4 +1,4 @@ # The second field is the hour. It's in UTC, so make sure to use the correct # value for your TZ. For example, I am in Ecuador, which is UTC-5, so if I want -# the bot to run at 7AM, I need to set the hour to 2AM (e.g. 2). -0 2 * * 1-5 curl "http://bot:8080/api/v1/rotation/trigger" >> /var/log/cron.log 2>&1 +# the bot to run at 7AM, I need to set the hour to 12PM. +0 12 * * 1-5 curl "http://bot:8080/api/v1/rotation/trigger" >> /var/log/cron.log 2>&1 -- 2.43.0