Anki/qt/i18n/pull-git
2020-02-23 18:33:03 +10:00

11 lines
256 B
Bash
Executable file

#!/bin/bash
if [ ! -d po ]; then
git clone https://github.com/ankitects/anki-desktop-i18n po
fi
echo "Updating translations from git..."
(cd po && git pull)
# make sure gettext translations haven't broken something
(cd po && python check-po-files.py)