scratch-l10n/scripts/update-translations.sh
chrisgarrity 1646441f4a rename files for clarity
also made the naming convention consistent (dashes not underscore)
2018-11-27 11:36:37 -05:00

15 lines
227 B
Bash

#!/bin/bash
# script for syncing translations from transifex and comitting the changes.
git checkout master
npm run pull:editor
npm run test
git add .
git commit -m "pull new editor translations from Transifex"
git push