Skip timestamp update for failed cron runs

Changed RunCron() to only update timestamp when the backup succeeds
This commit is contained in:
Dan Clough 2024-12-02 08:47:32 -06:00 committed by GitHub
parent 48fa20b482
commit 45c1b037f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -446,11 +446,11 @@ func (l Location) RunCron() error {
next := schedule.Next(last)
now := time.Now()
if now.After(next) {
lock.SetCron(l.name, now.Unix())
errs := l.Backup(true, "")
if len(errs) > 0 {
return fmt.Errorf("Failed to backup location \"%s\":\n%w", l.name, errors.Join(errs...))
}
lock.SetCron(l.name, now.Unix())
} else {
if !flags.CRON_LEAN {
colors.Body.Printf("Skipping \"%s\", not due yet.\n", l.name)