diff --git a/build_script.sh b/build_script.sh index 42265a3dba..a83ccde4ea 100755 --- a/build_script.sh +++ b/build_script.sh @@ -8,8 +8,17 @@ if [[ $files = *"bigbluebutton-html5"* ]]; then meteor npm install if [ $1 = linter ] then + html5_files="" + list=$(echo $files | tr " " "\n") + for file in $list + do + if [[ $file = bigbluebutton-html5* ]] ; then + html5_files+=" $file" + fi + done + cd .. - bigbluebutton-html5/node_modules/.bin/eslint --ext .jsx,.js $files + bigbluebutton-html5/node_modules/.bin/eslint --ext .jsx,.js $html5_files elif [ $1 = acceptance_tests ] then {