From 5b29a8680d87f1b80a1613b9642418a47aa03c5c Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 3 Dec 2018 15:23:26 -0800 Subject: [PATCH] Add missing callback --- src/apptask.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apptask.js b/src/apptask.js index 3301c6b0c..be1b6a68e 100644 --- a/src/apptask.js +++ b/src/apptask.js @@ -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);