all repos — searchix @ fbe7b849baa6a492443a69858593d7166bba62f0

Search engine for NixOS, nix-darwin, home-manager and NUR users

chore: wrap bleve command since we have a custom analyser, running the `bleve` tool crashes

Alan Pearce
commit

fbe7b849baa6a492443a69858593d7166bba62f0

parent

16f488de7dc8e0bb34ffadad167b443b803c8b73

1 file changed, 15 insertions(+), 0 deletions(-)

changed files
A cmd/bleve/main.go
@@ -0,0 +1,15 @@
+package main + +import ( + "github.com/blevesearch/bleve/v2/cmd/bleve/cmd" + + // to support standard set of build tags + _ "github.com/blevesearch/bleve/v2/config" + + // support nixAttr + _ "alin.ovh/searchix/internal/index/nixattr" +) + +func main() { + cmd.Execute() +}