We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d7e0e5 commit a4e0227Copy full SHA for a4e0227
src/vaults/CommandDelete.ts
@@ -8,11 +8,12 @@ import * as binParsers from '../utils/parsers';
8
class CommandDelete extends CommandPolykey {
9
constructor(...args: ConstructorParameters<typeof CommandPolykey>) {
10
super(...args);
11
- this.name('delete');
12
- this.description('Delete an Existing Vault');
+ this.name('rm');
+ this.alias('remove')
13
+ this.description('Remove an existing Vault');
14
this.argument(
15
'<vaultName>',
- 'Name of the vault to be deleted',
16
+ 'Name of the vault to be removed',
17
binParsers.parseVaultName,
18
);
19
this.addOption(binOptions.nodeId);
0 commit comments