Invoke grunt callback when shell test command completes

This commit is contained in:
Kevin Sawicki
2013-08-28 14:19:24 -07:00
parent b8c906d00e
commit 1381ffdbf5

View File

@@ -158,8 +158,9 @@ module.exports = (grunt) ->
options:
stdout: true
stderr: true
callback: (error, stdout, stderr) ->
callback: (error, stdout, stderr, callback) ->
grunt.warn('Specs failed') if error?
callback()
grunt.loadNpmTasks('grunt-coffeelint')
grunt.loadNpmTasks('grunt-lesslint')