Improve Logging

* say what command failed during setupAndroidProj
This commit is contained in:
Dan Doveralba
2014-04-15 14:43:29 -07:00
parent 0d792be080
commit 53ff8cd042

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));
});
};