Revert "if文修正"

This reverts commit 38fc0c54dd.
This commit is contained in:
Masaya Suzuki 2023-03-04 07:56:16 +09:00
parent 38fc0c54dd
commit 180d93e618
No known key found for this signature in database

View file

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