anki/rslib/ftl/scripts/upload-latest-templates

13 lines
229 B
Plaintext
Raw Normal View History

#!/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/core/templates/
2020-04-01 10:20:31 +02:00
(cd repo && git add core; git commit -m update || true; git push)