From 6a182994b65af4118df8ece84e7dc7486d2dcc50 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sat, 15 Apr 2017 09:39:26 -0700 Subject: [PATCH] Fix cli usage --- test/selfhost-digitalocean-filesystem-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/selfhost-digitalocean-filesystem-test.js b/test/selfhost-digitalocean-filesystem-test.js index 34f0629..11c7d85 100644 --- a/test/selfhost-digitalocean-filesystem-test.js +++ b/test/selfhost-digitalocean-filesystem-test.js @@ -316,7 +316,7 @@ describe('Selfhost DigitalOcean with filesystem backend', function () { }); it('can download backups', function () { - var out = machine('backup download ' + DO_SELFHOST_DOMAIN + ' --backup-id ' + backupInfo.id + ' ' + BACKUP_FOLDER); + var out = machine('backup download --cloudron ' + DO_SELFHOST_DOMAIN + ' ' + backupInfo.id + ' ' + BACKUP_FOLDER); console.log(out.stdout, out.stderr); if (out.stdout.indexOf(backupInfo.id) === -1) assert(false, 'Download failed');