From 2606a875eba8d74be56c78c97a76f3eb92c8253d Mon Sep 17 00:00:00 2001 From: Ben Stoutenburgh Date: Sun, 19 Feb 2023 09:19:18 -0500 Subject: [PATCH] fix: bash completion for latest command (#1472) Co-authored-by: James Hegedus --- completions/asdf.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/asdf.bash b/completions/asdf.bash index 24a432ca..b66c5e03 100644 --- a/completions/asdf.bash +++ b/completions/asdf.bash @@ -77,7 +77,7 @@ _asdf() { ;; plugin-list | plugin-list-all | info) ;; *) - local cmds='current global help install list list-all local plugin-add plugin-list plugin-list-all plugin-remove plugin-update reshim shell uninstall update where which info' + local cmds='current global help install latest list list-all local plugin-add plugin-list plugin-list-all plugin-remove plugin-update reshim shell uninstall update where which info' # shellcheck disable=SC2207 COMPREPLY=($(compgen -W "$cmds" -- "$cur")) ;;