scratch-l10n/scripts/update-translations.sh
2018-12-07 08:40:46 -05:00

14 lines
359 B
Bash
Executable file

#!/bin/bash
# script for syncing translations from transifex and comitting the changes.
# exit script if any command returns a non-zero return code:
set -ev
npm run pull:editor
npm run test
# commit any updates and push. Build and release should happen on the push not here.
git add .
git commit -m "pull new editor translations from Transifex"
git push