mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 13:42:30 -05:00
0f1dafef0e
Also fix copy/paste typo in package.json
15 lines
227 B
Bash
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
|