From 180d93e618aa03c147d163094fdc9e5097eddd3b Mon Sep 17 00:00:00 2001 From: Masaya Suzuki Date: Sat, 4 Mar 2023 07:56:16 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"if=E6=96=87=E4=BF=AE=E6=AD=A3"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 38fc0c54ddf086fc08aa8157a658b86a3774ad57. --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 71e9acb..d693e15 100755 --- a/start.sh +++ b/start.sh @@ -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