anki/qt/po/scripts/fetch-latest-translations
Damien Elmes 46fadc2a82 don't abort build if mo file fails; rename files for consistency
Issues are now checked for in CI, so there's no need to break the
build for everyone each time there's a problem with the gettext
catalogs.
2020-02-26 17:47:02 +10:00

10 lines
169 B
Bash
Executable File

#!/bin/bash
echo "Downloading latest translations..."
if [ ! -d repo ]; then
git clone https://github.com/ankitects/anki-desktop-i18n repo
fi
(cd repo && git pull)