From 9c790c1c620e46ca8d2cf49c50951635621e9a7d Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 20 May 2024 23:07:25 +0200 Subject: feat: add --update flag to force-update index and exit --- justfile | 3 +++ searchix.go | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 87bc5ca..1295f29 100644 --- a/justfile +++ b/justfile @@ -25,3 +25,6 @@ dev: reindex: wgo run --exit . --config config.toml --replace + +update: + wgo run --exit . --config config.toml --update diff --git a/searchix.go b/searchix.go index 384dfe7..e672bbf 100644 --- a/searchix.go +++ b/searchix.go @@ -31,6 +31,7 @@ var ( ) liveReload = flag.Bool("live", false, "whether to enable live reloading (development)") replace = flag.Bool("replace", false, "replace existing index and exit") + update = flag.Bool("update", false, "update index and exit") version = flag.Bool("version", false, "print version information") ) @@ -111,13 +112,13 @@ func main() { log.Fatalf("Failed to open or create index: %v", err) } - if !exists || *replace { + if !exists || *replace || *update { slog.Info("Index doesn't exist. Starting build job...") err = importer.Start(cfg, write, *replace, nil) if err != nil { log.Fatalf("Failed to build index: %v", err) } - if *replace { + if *replace || *update { return } } else { -- cgit 1.4.1