mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -04:00
8 lines
172 B
Bash
Executable file
8 lines
172 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)
|