Add clarifying comment

This commit is contained in:
chrisgarrity 2018-12-06 13:44:47 -05:00
parent 216a766daa
commit 65b5158149

View file

@ -4,9 +4,9 @@
# exit if either the pulls or the test fail # exit if either the pulls or the test fail
npm run pull:editor 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 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 add .
git commit -m "pull new editor translations from Transifex" git commit -m "pull new editor translations from Transifex"