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