Add missing callback

This commit is contained in:
Girish Ramakrishnan
2018-12-03 15:23:26 -08:00
parent 8f57c44837
commit 5b29a8680d

View File

@@ -696,7 +696,7 @@ function update(app, callback) {
async.series([
updateApp.bind(null, app, { installationProgress: '15, Backing up app' }),
backups.backupApp.bind(null, app, (progress) => updateApp(app, { installationProgress: progress.message }))
backups.backupApp.bind(null, app, (progress) => updateApp(app, { installationProgress: progress.message }, NOOP_CALLBACK))
], function (error) {
if (error) error.backupError = true;
next(error);