mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 05:32:34 -05:00
Add clarifying comment
This commit is contained in:
parent
216a766daa
commit
65b5158149
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@
|
|||
# exit if either the pulls or the test fail
|
||||
|
||||
npm run pull:editor
|
||||
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi
|
||||
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi #exit if pull failed
|
||||
npm run test
|
||||
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi
|
||||
rc=$?; if [[ $rc != 0 ]]; then exit $rc; fi #exit if test failed
|
||||
git add .
|
||||
|
||||
git commit -m "pull new editor translations from Transifex"
|
||||
|
|
Loading…
Reference in a new issue