aboutsummaryrefslogtreecommitdiff
path: root/tools/print-cache/print-cache.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2021-02-27 23:29:04 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2021-02-27 23:29:04 +0100
commit21210173c4d04676436b8e48dfbe4043299797cb (patch)
treeebd1b27308efd9be3bbc05d7387a2939f920961e /tools/print-cache/print-cache.go
parent8ff43ad01008e8640b2d6f9fd2a56b1c4a78f68f (diff)
downloadfeed2imap-go-21210173c4d04676436b8e48dfbe4043299797cb.tar.gz
feed2imap-go-21210173c4d04676436b8e48dfbe4043299797cb.tar.bz2
feed2imap-go-21210173c4d04676436b8e48dfbe4043299797cb.zip
Do not upgrade the cache in `print-cache`
Diffstat (limited to 'tools/print-cache/print-cache.go')
-rw-r--r--tools/print-cache/print-cache.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/print-cache/print-cache.go b/tools/print-cache/print-cache.go
index c00bf51..ef1d8e5 100644
--- a/tools/print-cache/print-cache.go
+++ b/tools/print-cache/print-cache.go
@@ -22,7 +22,7 @@ func init() {
func main() {
flag.Parse()
- cache, err := cache.Load(cacheFile)
+ cache, err := cache.Load(cacheFile, false)
if err != nil {
log.Fatal(err)
}
i5-70/+90 2006-12-11Move common output-functions into ui-shared.cLars Hjemli4-82/+99 2006-12-11Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.cLars Hjemli4-28/+29 2006-12-11Avoid infinite loops in caching layerLars Hjemli3-14/+31 2006-12-11Let 'make install' clear all cachefilesLars Hjemli1-0/+2 2006-12-11Fix cache algorithm loopholeLars Hjemli3-11/+16 2006-12-10Add version identifier in generated filesLars Hjemli2-9/+14 2006-12-10Add license file and copyright noticesLars Hjemli5-0/+372 2006-12-10Add caching infrastructureLars Hjemli9-28/+353