make percent non-zero

This commit is contained in:
Girish Ramakrishnan
2019-12-18 09:33:44 -08:00
parent ca4fdc1be8
commit 887cbb0b22
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -825,7 +825,7 @@ function update(app, args, progressCallback, callback) {
async.series([
// this protects against the theoretical possibility of an app being marked for update from
// a previous version of box code
progressCallback.bind(null, { percent: 0, message: 'Verify manifest' }),
progressCallback.bind(null, { percent: 5, message: 'Verify manifest' }),
verifyManifest.bind(null, updateConfig.manifest),
function (next) {