From 1381ffdbf55def5a585feb24534161028171cd16 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 28 Aug 2013 14:19:24 -0700 Subject: [PATCH] Invoke grunt callback when shell test command completes --- Gruntfile.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index d38e93968..18ea8d7b9 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -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')