diff options
| author | Paul Buetow <paul@buetow.org> | 2024-10-18 10:50:54 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-10-18 10:50:54 +0300 |
| commit | 6bfebf75147c88c45f711463a3cfc0a11ac15498 (patch) | |
| tree | 2c93f44293eba8b866001b112f78b1a35a806c1d /internal/queue/queue.go | |
| parent | b2230f9e34101e5491ceae2f8e79bdcc76321219 (diff) | |
fix unit test
Diffstat (limited to 'internal/queue/queue.go')
| -rw-r--r-- | internal/queue/queue.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/queue/queue.go b/internal/queue/queue.go index f46e7a6..32d645f 100644 --- a/internal/queue/queue.go +++ b/internal/queue/queue.go @@ -78,10 +78,10 @@ func queuePlatforms(args config.Args) error { if args.DryRun { continue } - // log.Println("Removing", filePath) - // if err := os.Remove(filePath); err != nil { - // return err - // } + log.Println("Removing", filePath) + if err := os.Remove(filePath); err != nil { + return err + } } return nil |
