Skip to content

Commit 2bd66af

Browse files
author
Will Scullin
authored
Fix search output file name (#249)
1 parent f7221e4 commit 2bd66af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ function outputSearchSegmentsFile(
292292
2
293293
)}`;
294294
fs.mkdirSync(JS_OUT_PATH, { recursive: true });
295-
fs.writeFileSync(path.join(JS_OUT_PATH, "search_segments"), file);
295+
fs.writeFileSync(path.join(JS_OUT_PATH, "search_segments.js"), file);
296296
log(`File js/generated/search_segments.js written.`);
297297
}
298298

0 commit comments

Comments
 (0)