tag -> prefix

This commit is contained in:
Girish Ramakrishnan
2017-01-05 22:55:27 -08:00
parent 49e299b62d
commit 20a75b7819
2 changed files with 22 additions and 21 deletions

View File

@@ -410,7 +410,7 @@ function backup(app, callback) {
async.series([
updateApp.bind(null, app, { installationProgress: '10, Backing up' }),
backups.backupApp.bind(null, app, app.manifest, null /* tag */),
backups.backupApp.bind(null, app, app.manifest, 'appbackups' /* tag */),
// done!
function (callback) {
@@ -600,7 +600,7 @@ function update(app, callback) {
async.series([
updateApp.bind(null, app, { installationProgress: '30, Backing up app' }),
backups.backupApp.bind(null, app, app.oldConfig.manifest, null /* tag */)
backups.backupApp.bind(null, app, app.oldConfig.manifest, 'appbackups' /* tag */)
], next);
},