mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00

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.
9 lines
169 B
Bash
Executable file
9 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)
|