Anki/qt/i18n/sync-git
Damien Elmes d1e587fca9 add ftl to the build process, and a sync-git script
also
- ensure po files are checked when updated
- add start of sync.ftl
2020-02-17 08:40:17 +10:00

12 lines
270 B
Bash
Executable file

#!/bin/bash
# pull any pending changes from git repos
./pull-git
# upload changes to .pot
./update-po-template
(cd po && git commit -m update; git push)
# upload changes to ftl templates
./update-ftl-templates
(cd ftl && git add core; git commit -m update; git push)