refactor: remove duplicate update flag
Alan Pearce alan@alanpearce.eu
Mon, 24 Mar 2025 14:26:19 +0100
2 files changed, 1 insertions(+), 5 deletions(-)
M cmd/searchix-web/main.go → cmd/searchix-web/main.go
@@ -28,7 +28,6 @@ "print default configuration and exit", ) dev = flag.Bool("dev", false, "enable live reloading and nicer logging") 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") cpuprofile = flag.String("cpuprofile", "", "enable CPU profiling and save to `file`") ) @@ -98,7 +97,7 @@ if err != nil { logger.Fatal("Failed to create importer", "error", err) } - if !exists || *replace || *update { + if !exists || *replace { err := imp.Start(ctx, true, nil) if err != nil { logger.Fatal("Failed to start importer", "error", err)