mirror of
https://github.com/ankitects/anki.git
synced 2025-11-15 17:17:11 -05:00
12 lines
270 B
Bash
Executable file
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)
|