ESlint brace-style

This commit is contained in:
Peter Jaszkowiak
2017-02-17 22:11:35 -07:00
parent 52f2028206
commit 879470f417
4 changed files with 9 additions and 8 deletions

View File

@@ -513,8 +513,11 @@ install.setup = function (callback) {
if (err) {
return next(err);
}
if (!uptodate) { upgrade.upgrade(next); }
else { next(); }
if (!uptodate) {
upgrade.upgrade(next);
} else {
next();
}
});
},
], function (err, results) {