diff options
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -108,7 +108,9 @@ func run() error { defer c.Disconnect() } - if !*buildCache { + if *buildCache { + state.Foreach((*feed.Feed).MarkSuccess) + } else { state.ForeachGo(func(f *feed.Feed) { processFeed(f, c, *dryRun) }) |