Skip to content

Commit

Permalink
fix(audit): add signatures to completion
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar authored and fritzy committed Mar 2, 2023
1 parent fc46489 commit c4c8754
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/commands/audit.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,11 +389,12 @@ class Audit extends ArboristWorkspaceCmd {
const argv = opts.conf.argv.remain

if (argv.length === 2) {
return ['fix']
return ['fix', 'signatures']
}

switch (argv[2]) {
case 'fix':
case 'signatures':
return []
default:
throw Object.assign(new Error(argv[2] + ' not recognized'), {
Expand Down

0 comments on commit c4c8754

Please sign in to comment.