From 53ff8cd042dcc5d973cc091449f64c282eb9864d Mon Sep 17 00:00:00 2001 From: Dan Doveralba Date: Tue, 15 Apr 2014 14:43:29 -0700 Subject: [PATCH] Improve Logging * say what command failed during setupAndroidProj --- grunt-helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt-helpers.js b/grunt-helpers.js index 2571ff567..9ffda278d 100644 --- a/grunt-helpers.js +++ b/grunt-helpers.js @@ -339,7 +339,7 @@ var setupAndroidProj = function (grunt, projPath, args, cb) { grunt.log.write(data); }); proc.on('exit', function (code) { - cb(code === 0 ? null : new Error("Setup failed with code " + code)); + cb(code === 0 ? null : new Error("Setup cmd " + cmd + " failed with code " + code)); }); };