mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
fix push-i18n-ftl
This commit is contained in:
parent
546f4b44fc
commit
05cc47a5d3
2 changed files with 2 additions and 2 deletions
|
@ -8,4 +8,4 @@ set -eu -o pipefail ${SHELLFLAGS}
|
||||||
test -d repo || exit 1
|
test -d repo || exit 1
|
||||||
|
|
||||||
rsync -av --delete *.ftl repo/desktop/templates/
|
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)
|
||||||
|
|
|
@ -8,5 +8,5 @@ set -eu -o pipefail ${SHELLFLAGS}
|
||||||
test -d repo || exit 1
|
test -d repo || exit 1
|
||||||
|
|
||||||
rsync -av --delete *.ftl repo/core/templates/
|
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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue