chartEnabled=trueでfont.ttfが配置されていない場合は異常終了する

This commit is contained in:
Masaya Suzuki 2023-03-05 08:16:32 +09:00
parent 1a19893f10
commit 211393ff32
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View file

@ -49,7 +49,7 @@ Misskey用の日本語Botです。
`docker-compose.yml``enable_mecab``0` にすると、MeCabをインストールしないようにもできます。メモリが少ない環境など
## フォント
一部の機能にはフォントが必要です。藍にはフォントは同梱されていないので、ご自身でフォントをインストールディレクトリに`font.ttf`という名前で設置してください。
チャート機能にはフォントが必要です。藍にはフォントは同梱されていないので、ご自身でフォントをインストールディレクトリに`font.ttf`という名前で設置してください。
## 記憶
藍は記憶の保持にインメモリデータベースを使用しており、藍のインストールディレクトリに `memory.json` という名前で永続化されます。

View file

@ -12,4 +12,9 @@ if grep keywordEnabled config.json | grep -q true; then
fi
fi
if (grep chartEnabled config.json | grep -q true) && [ ! -f ./font.ttf ]; then
echo "You must put font.ttf if chartEnabled is true"
exit 1
fi
node ./built