better handling of building app that doesn't exist

This commit is contained in:
Jonathan Lipps 2013-02-14 10:14:19 -08:00
Родитель aaa19e7777
Коммит a01da0811b
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -185,7 +185,7 @@ module.exports.build = function(appRoot, cb, sdk) {
if (code === 0) {
cb(null);
} else {
console.log("Failed building app");
console.log("Failed building app, maybe it doesn't exist?");
cb(output);
}
});
@ -197,7 +197,7 @@ module.exports.buildApp = function(appDir, cb, sdk) {
}
var appRoot = path.resolve(__dirname, 'sample-code/apps/', appDir);
module.exports.build(appRoot, function(err) {
if (err) {
if (err !== null) {
console.log(err);
cb(false);
} else {