Bug 1136450 - WebIDE packaging check did not function correctly. r=ochameau

This commit is contained in:
J. Ryan Stinnett 2015-02-25 08:55:06 -06:00
Родитель ed325766ab
Коммит 05b440e844
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -37,7 +37,7 @@ const ProjectBuilding = exports.ProjectBuilding = {
// If the app depends on some build step, run it before pushing the app
build: Task.async(function* ({ project, logger }) {
if (!this.hasPrepackage(project)) {
if (!(yield this.hasPrepackage(project))) {
return;
}
@ -168,4 +168,3 @@ const ProjectBuilding = exports.ProjectBuilding = {
}
}),
};