summaryrefslogtreecommitdiff
path: root/internal/run.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/run.go')
-rw-r--r--internal/run.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/run.go b/internal/run.go
index 1bfc06a..51573f5 100644
--- a/internal/run.go
+++ b/internal/run.go
@@ -16,7 +16,7 @@ func Run(ctx context.Context, args config.Args) error {
}
for _, platform := range args.Platforms {
- path, err := schedule.Run(args, platform)
+ ent, err := schedule.Run(args, platform)
switch {
case errors.Is(err, schedule.ErrNothingToSchedule):
log.Println("Nothing to be scheduled for", platform)
@@ -26,7 +26,7 @@ func Run(ctx context.Context, args config.Args) error {
return err
}
- log.Println("Scheduling", path)
+ log.Println("Scheduling", ent)
}
return nil