mirror of
https://github.com/ankitects/anki.git
synced 2025-11-14 16:47:12 -05:00
9 lines
179 B
Bash
Executable file
9 lines
179 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# 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)
|