Skip to content

Commit

Permalink
if文修正
Browse files Browse the repository at this point in the history
  • Loading branch information
massongit committed Mar 3, 2023
1 parent 49d0929 commit 38fc0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 38fc0c5

Please sign in to comment.