mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

# Conflicts: # .github/scripts/trailing-newlines.sh # Makefile # qt/tools/typecheck-setup.sh # react/Makefile # rspy/Makefile # svelte/Makefile # tslib/Makefile
11 lines
203 B
Bash
Executable file
11 lines
203 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu -o pipefail ${SHELLFLAGS}
|
|
|
|
echo "Downloading latest translations..."
|
|
|
|
if [ ! -d repo ]; then
|
|
git clone https://github.com/ankitects/anki-desktop-ftl repo
|
|
fi
|
|
|
|
(cd repo && git pull)
|