diff options
Diffstat (limited to 'searchix.go')
-rw-r--r-- | searchix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searchix.go b/searchix.go index 9917969..59235cd 100644 --- a/searchix.go +++ b/searchix.go @@ -81,7 +81,7 @@ func main() { log.Fatalf("Failed to open or create index: %v", err) } - if !exists { + if !exists || *replace { slog.Info("Index doesn't exist. Starting build job...") err = importer.Start(cfg, write, *replace) if err != nil { |