better grunt app building error reporting

This commit is contained in:
Jonathan Lipps 2013-01-14 15:56:13 -08:00
Родитель b3869b18b7
Коммит 0563215e8f
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -49,8 +49,10 @@ module.exports = function(grunt) {
build(appRoot, function(err) {
if (err) {
console.log(err);
done(false);
} else {
done(true);
}
done();
});
});
};