mecab-ipadic-neologdのチェック追加

This commit is contained in:
Masaya Suzuki 2023-03-04 07:59:28 +09:00
parent 7c3eaf59d4
commit 1a19893f10
No known key found for this signature in database

View file

@ -1,8 +1,15 @@
#!/usr/bin/env bash
if (grep keywordEnabled config.json | grep -q true) && (! which mecab); then
echo "You must install MeCab if keywordEnabled is true."
exit 1
if grep keywordEnabled config.json | grep -q true; then
if ! which mecab; then
echo "You must install MeCab if keywordEnabled is true."
exit 1
fi
if [ ! -e '/usr/lib/x86_64-linux-gnu/mecab/dic/mecab-ipadic-neologd/' ]; then
echo "You must install mecab-ipadic-neologd if keywordEnabled is true."
exit 1
fi
fi
node ./built