anki/qt/i18n/sync-git
2020-02-17 11:45:56 +10:00

13 lines
287 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 add desktop; 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)