Skip to content

Commit

Permalink
chore: deleted CommandUpdate
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
aryanjassal committed Sep 30, 2024
1 parent 887c171 commit c375242
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 91 deletions.
2 changes: 1 addition & 1 deletion src/secrets/CommandList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class CommandList extends CommandPolykey {
constructor(...args: ConstructorParameters<typeof CommandPolykey>) {
super(...args);
this.name('ls');
this.aliases(['list']);
this.alias('list');
this.description('List all secrets for a vault within a directory');
this.argument(
'<directoryPath>',
Expand Down
2 changes: 0 additions & 2 deletions src/secrets/CommandSecrets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import CommandList from './CommandList';
import CommandMkdir from './CommandMkdir';
import CommandRename from './CommandRename';
import CommandRemove from './CommandRemove';
import CommandUpdate from './CommandUpdate';
import CommandStat from './CommandStat';
import CommandWrite from './CommandWrite';
import CommandPolykey from '../CommandPolykey';
Expand All @@ -26,7 +25,6 @@ class CommandSecrets extends CommandPolykey {
this.addCommand(new CommandMkdir(...args));
this.addCommand(new CommandRename(...args));
this.addCommand(new CommandRemove(...args));
this.addCommand(new CommandUpdate(...args));
this.addCommand(new CommandStat(...args));
this.addCommand(new CommandWrite(...args));
}
Expand Down
88 changes: 0 additions & 88 deletions src/secrets/CommandUpdate.ts

This file was deleted.

0 comments on commit c375242

Please sign in to comment.