Merge pull request #2354 from dandoveralba/will

Improve Logging
This commit is contained in:
Jonathan Lipps
2014-04-15 17:44:26 -07:00
+1 -1
View File
@@ -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));
});
};