keywordEnabled=trueでMeCabがインストールされていない場合は起動前に異常終了する

This commit is contained in:
Masaya Suzuki 2023-03-04 07:25:25 +09:00
parent 31abe7146e
commit 4bf2052a1a
No known key found for this signature in database
2 changed files with 9 additions and 1 deletions

View file

@ -2,7 +2,7 @@
"_v": "1.5.0",
"main": "./built/index.js",
"scripts": {
"start": "node ./built",
"start": "./start.sh",
"build": "tsc",
"test": "jest"
},

8
start.sh Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
if (! which mecab) && (grep keywordEnabled config.json | grep -q true); then
echo "You must install MeCab if keywordEnabled is true."
exit 1
fi
node ./built