fix linting

This commit is contained in:
fscherwi 2016-02-23 11:30:49 +01:00
parent ad431fda81
commit 86ec741ecb
1 changed files with 2 additions and 2 deletions

View File

@ -60,9 +60,9 @@ if [ "$TEST_PACKAGES" != "none" ]; then
fi
if [ -f ./node_modules/.bin/coffeelint ]; then
if [ -d ./lib ]; then
if [ -d ./src ]; then
echo "Linting package..."
./node_modules/.bin/coffeelint lib
./node_modules/.bin/coffeelint src
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi
fi
if [ -d ./spec ]; then