diff options
Diffstat (limited to 'internal/queue/queue.go')
| -rw-r--r-- | internal/queue/queue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/queue/queue.go b/internal/queue/queue.go index a5ed77c..66b7c38 100644 --- a/internal/queue/queue.go +++ b/internal/queue/queue.go @@ -40,7 +40,7 @@ func queueEntries(args config.Args) error { for filePath := range ch { destPath := fmt.Sprintf("%s/db/%s.%s.queued", args.GosDir, filepath.Base(filePath), now.Format("20060102-150405")) - if err := os.Rename(filePath, destPath); err != nil { + if err := oi.Rename(filePath, destPath); err != nil { return err } } |
