remove manifest arg to backupApp

This commit is contained in:
Girish Ramakrishnan
2017-11-19 17:53:17 -08:00
parent c2dbc40473
commit 998bc36673
2 changed files with 12 additions and 16 deletions
+2 -2
View File
@@ -482,7 +482,7 @@ function backup(app, callback) {
async.series([
updateApp.bind(null, app, { installationProgress: '10, Backing up' }),
backups.backupApp.bind(null, app, app.manifest),
backups.backupApp.bind(null, app),
// done!
function (callback) {
@@ -592,7 +592,7 @@ function update(app, callback) {
async.series([
updateApp.bind(null, app, { installationProgress: '15, Backing up app' }),
backups.backupApp.bind(null, app, app.manifest)
backups.backupApp.bind(null, app)
], next);
},