Skip to content

Commit

Permalink
Added credential-list option
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayasimha Raghavan authored and Jayasimha Raghavan committed Oct 18, 2023
1 parent 5b59789 commit 9fb8f4d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion unskript-ctl/bash_completion_unskript_ctl.bash
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ _unskript-client-completion() {
return 0
;;

--credential-list)
# Provide completion suggestions for list-checks options
COMPREPLY=()
return 0
;;

-sa|--show-audit-trail)
# Provide completion suggestions for show-audit-trail options
COMPREPLY=( $(compgen -W "--all --type --execution_id" -- "${cur}" -o nospace) )
Expand Down Expand Up @@ -141,4 +147,4 @@ _unskript-client-completion() {
}

# Register the completion function for unskript-client.py
complete -F _unskript-client-completion unskript-ctl.sh
complete -F _unskript-client-completion unskript-ctl.sh

0 comments on commit 9fb8f4d

Please sign in to comment.