10 lines
168 B
Bash
Executable File
10 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Downloading latest translations..."
|
|
|
|
if [ ! -d repo ]; then
|
|
git clone https://github.com/ankitects/anki-desktop-ftl repo
|
|
fi
|
|
|
|
(cd repo && git pull)
|