Skip to content

Commit

Permalink
Merge pull request #56 from blomeyer/master
Browse files Browse the repository at this point in the history
Add compatability to latest scss-lint version 0.26.0
  • Loading branch information
ahmednuaman committed Jul 28, 2014
2 parents 29484b3 + 12624de commit 1121a6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/lib/scss-lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ exports.init = function (grunt) {
var message,
rawResults;

if (err && err.code !== 65) {
if (err && err.code !== 1 && err.code !== 2 && err.code !== 65) {
if (err.code === 127) {
grunt.log.errorlns('1. Please make sure you have ruby installed: `ruby -v`');
grunt.log.errorlns('2. Install the `scss-lint` gem by running:');
Expand Down

0 comments on commit 1121a6d

Please sign in to comment.