better grunt app building error reporting

This commit is contained in:
Jonathan Lipps
2013-01-14 15:56:13 -08:00
parent b3869b18b7
commit 0563215e8f
+3 -1
View File
@@ -49,8 +49,10 @@ module.exports = function(grunt) {
build(appRoot, function(err) {
if (err) {
console.log(err);
done(false);
} else {
done(true);
}
done();
});
});
};