fix push-i18n-ftl

This commit is contained in:
Damien Elmes 2020-04-01 18:20:31 +10:00
parent 546f4b44fc
commit 05cc47a5d3
2 changed files with 2 additions and 2 deletions

View file

@ -8,4 +8,4 @@ set -eu -o pipefail ${SHELLFLAGS}
test -d repo || exit 1
rsync -av --delete *.ftl repo/desktop/templates/
(cd repo && git add desktop; git commit -m update; git push)
(cd repo && git add desktop; git commit -m update || true; git push)

View file

@ -8,5 +8,5 @@ set -eu -o pipefail ${SHELLFLAGS}
test -d repo || exit 1
rsync -av --delete *.ftl repo/core/templates/
(cd repo && git add core; git commit -m update; git push)
(cd repo && git add core; git commit -m update || true; git push)