mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
条件を逆にする
This commit is contained in:
parent
4bf2052a1a
commit
8f5e353b20
1 changed files with 1 additions and 1 deletions
2
start.sh
2
start.sh
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if (! which mecab) && (grep keywordEnabled config.json | grep -q true); then
|
||||
if (grep keywordEnabled config.json | grep -q true) && (! which mecab); then
|
||||
echo "You must install MeCab if keywordEnabled is true."
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue