Skip to content

Commit a5469d9

Browse files
authored
1.1.1
1.1.1
2 parents a23eebe + c62d35f commit a5469d9

File tree

8 files changed

+578
-131
lines changed

8 files changed

+578
-131
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
README.md
2-
LICENSE.md
3-
config/
2+
LICENSE.md

bash_completion

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ _bashpack() {
2727
local prev=${COMP_WORDS[COMP_CWORD-1]}
2828

2929
case ${COMP_CWORD} in
30-
1) COMPREPLY=($(compgen -W "update man --test-installation --publication --version --help --self-install --self-update --self-delete" -- ${cur})) ;;
30+
1) COMPREPLY=($(compgen -W "verify update man --publication --version --help --self-install --self-update --self-delete" -- ${cur})) ;;
3131
2)
3232
case ${prev} in
3333
update) COMPREPLY=($(compgen -W "--help --assume-yes --ask --when --get-logs" -- ${cur})) ;;
34+
verify) COMPREPLY=($(compgen -W "--help --files --download" -- ${cur})) ;;
3435
esac ;;
3536
*) COMPREPLY=() ;;
3637
esac

0 commit comments

Comments
 (0)