Skip to content

Commit

Permalink
allow using --force to ignore compile errors - fixes #184
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 6, 2015
1 parent fa9ab06 commit e713d29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks/sass.js
Expand Up @@ -108,7 +108,9 @@ module.exports = function (grunt) {
cp.on('error', grunt.warn);
cp.on('close', function (code) {
if (code > 0) {
return grunt.warn('Exited with error code ' + code);
grunt.warn('Exited with error code ' + code);
next();
return;
}

// Callback to insert banner
Expand Down

0 comments on commit e713d29

Please sign in to comment.