fix: re-enable exit --update/--replace regression after extracting the command-line handling to cmd/searchix-web
Alan Pearce alan@alanpearce.eu
Wed, 29 May 2024 10:44:58 +0200
1 files changed, 4 insertions(+), 0 deletions(-)
jump to
M cmd/searchix-web/main.go → cmd/searchix-web/main.go
@@ -58,6 +58,10 @@ if err != nil { log.Fatalf("Failed to setup index: %v", err) } + if *replace || *update { + os.Exit(0) + } + ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt) defer cancel()