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
226 B
Bash
Executable file
11 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# expects to be run from the ftl folder
|
|
#
|
|
|
|
set -eu -o pipefail ${SHELLFLAGS}
|
|
|
|
test -d repo || exit 1
|
|
|
|
rsync -av --delete *.ftl repo/desktop/templates/
|
|
(cd repo && git add desktop; git commit -m update; git push)
|