Skip to content

Commit 95a1cf2

Browse files
committed
fix: 'bpm.bash' completions to add the 'link' and 'install' options
1 parent b2ec721 commit 95a1cf2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/completions/bpm.bash

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,12 @@ _bpm() {
6464
readarray -t COMPREPLY < <(IFS=' ' compgen -W "${subcommandOptions[*]}" -- "$currentWord")
6565
;;
6666
install)
67+
subcommandOptions=(--ssh)
68+
readarray -t COMPREPLY < <(IFS=' ' compgen -W "${subcommandOptions[*]}" -- "$currentWord")
6769
;;
6870
link)
71+
subcommandOptions=(--no-deps)
72+
readarray -t COMPREPLY < <(IFS=' ' compgen -W "${subcommandOptions[*]}" -- "$currentWord")
6973
;;
7074
list)
7175
subcommandOptions=(--outdated)

0 commit comments

Comments
 (0)