From 5c41467e63cb3ec20397dd1790a10ca3999204d3 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 2 Oct 2024 11:06:51 +0300 Subject: fix --- internal/run.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/run.go') diff --git a/internal/run.go b/internal/run.go index 51573f5..4d600f0 100644 --- a/internal/run.go +++ b/internal/run.go @@ -20,8 +20,10 @@ func Run(ctx context.Context, args config.Args) error { switch { case errors.Is(err, schedule.ErrNothingToSchedule): log.Println("Nothing to be scheduled for", platform) + return nil case errors.Is(err, schedule.ErrNothingQueued): log.Println("Nothing queued for", platform) + return nil case err != nil: return err } -- cgit v1.2.3