1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

remove self updates

This commit is contained in:
Kyle Spearrin
2018-05-23 09:02:47 -04:00
parent 186783ba6d
commit 8207e703ac
4 changed files with 0 additions and 54 deletions

View File

@@ -466,7 +466,6 @@ export class Program {
program
.command('update')
.description('Check for updates.')
.option('--self', 'Attempt to automatically update self.')
.on('--help', () => {
writeLn('\n Notes:');
writeLn('');
@@ -474,13 +473,10 @@ export class Program {
writeLn('');
writeLn(' Use the `--raw` option to return only the download URL for the update.');
writeLn('');
writeLn(' `--self` updates are not available on Windows.');
writeLn('');
writeLn(' Examples:');
writeLn('');
writeLn(' bw update');
writeLn(' bw update --raw');
writeLn(' bw update --self');
writeLn('', true);
})
.action(async (cmd) => {