mozcdict-ext/neologd/mkdict.zsh
2023-01-13 01:08:36 +09:00

19 lines
267 B
Bash

#!/bin/zsh
if [[ ! -e ./neologd.rb ]]
then
print "Run this script on same directory as mkdict.zsh" >&2
exit 1
fi
if [[ -e upsttream ]]
then
(
cd upstream
git pull
)
else
git clone 'https://github.com/neologd/mecab-ipadic-neologd.git' upstream
fi