We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5adae5 commit 0ad10b5Copy full SHA for 0ad10b5
internal/build/cmd/generate/commands/gensource/command.go
@@ -145,7 +145,9 @@ func (cmd *Command) Execute() (err error) {
145
146
for _, fpath := range inputFiles {
147
fname := filepath.Base(fpath)
148
- if fname == "_common.json" || strings.HasPrefix(fname, "_internal") {
+ if fname == "_common.json" ||
149
+ strings.HasPrefix(fname, "_internal") ||
150
+ fname == "knn_search.json" {
151
continue
152
}
153
0 commit comments