Anki/qt/i18n/sync-po-git
evandrocoan 47ccd6638d Added -o pipefail to all set -e ensuring the build fails when some
operation with pipe exits error status.

# Conflicts:
#	Makefile
2020-02-24 20:18:56 -03:00

9 lines
189 B
Bash
Executable file

#!/bin/bash
set -eo pipefail
# 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)