Skip to content

Commit

Permalink
Merge pull request #31 from hseg/fix-completion
Browse files Browse the repository at this point in the history
Add completion for revoke subcommand itself
  • Loading branch information
ltratt authored Jan 10, 2024
2 parents 2b04c2f + 660bd00 commit 194f75e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion share/bash/completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ _accounts(){
_pizauth()
{
local cur prev sub
local cmds=(dump info refresh restore reload server show shutdown status)
local cmds=()
cmds+=(dump restore reload shutdown status)
cmds+=(info server)
cmds+=(refresh revoke show)

cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD - 1]}
Expand Down

0 comments on commit 194f75e

Please sign in to comment.