Skip to content

Commit 63e7dca

Browse files
authored
fix: correct help for asdf set command completion bash (#1921)
1 parent 554b4ea commit 63e7dca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/completions/asdf.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ _asdf() {
111111
COMPREPLY=($(compgen -W "$versions" -- "$cur"))
112112
else
113113
# shellcheck disable=SC2207
114-
COMPREPLY=($(compgen -W "$plugins -h -p" -- "$cur"))
114+
COMPREPLY=($(compgen -W "$plugins -u -p" -- "$cur"))
115115
fi
116116
;;
117117
latest)

0 commit comments

Comments
 (0)