No bug. Fix Loop's run-all-loop-tests script to run eslint correctly in the new world. rs=dmose NPOTB DONTBUILD

This commit is contained in:
Mark Banner 2015-11-30 19:48:05 +00:00
parent 137e4e143e
commit 6a09ac674e

View File

@ -16,7 +16,7 @@ LOOPDIR=browser/extensions/loop
ESLINT=standalone/node_modules/.bin/eslint
if [ -x "${LOOPDIR}/${ESLINT}" ]; then
echo 'running eslint; see http://eslint.org/docs/rules/ for error info'
(cd ${LOOPDIR} && ./${ESLINT} --ext .js --ext .jsm --ext .jsx .)
(./${LOOPDIR}/${ESLINT} --ext .js --ext .jsm --ext .jsx ${LOOPDIR})
if [ $? != 0 ]; then
exit 1;
fi