diff options
| author | julian laplace <julescarbon@gmail.com> | 2026-01-18 14:47:28 +0100 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2026-01-18 14:47:28 +0100 |
| commit | d08fa34987e0792a8722d77dd052a1cacd96db10 (patch) | |
| tree | 1ec95b121e3c597b0d03ce9906565fcf2055ec8d /bucky/bin | |
| parent | 9f1b85f69a2129622fd60c858247292f30f7da35 (diff) | |
fixing search
Diffstat (limited to 'bucky/bin')
| -rw-r--r-- | bucky/bin/build-search.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bucky/bin/build-search.js b/bucky/bin/build-search.js index 23657b3..cb12c23 100644 --- a/bucky/bin/build-search.js +++ b/bucky/bin/build-search.js @@ -1,4 +1,6 @@ -var lexicon = require('../search/lexicon') - -lexicon.build().then(() => process.exit()) +var lexicon = require("../search/lexicon"); +lexicon.build().then(() => { + lexicon.save(); + process.exit(); +}); |
