scratch-l10n/scripts/sync_tx.sh
chrisgarrity 0f1dafef0e Add bash script for committing sync updates
Also fix copy/paste typo in package.json
2018-11-27 07:32:34 -05:00

15 lines
227 B
Bash

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