From 1c622b15793e92cc9d2fa9a4ed25c6acff69cf3f Mon Sep 17 00:00:00 2001 From: jthegedus Date: Mon, 26 Jul 2021 15:33:32 +1000 Subject: [PATCH] feat: display plugin repo refs alongside urls in info cmd --- lib/commands/command-info.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands/command-info.bash b/lib/commands/command-info.bash index 41bb3f742..2c6c3fc80 100644 --- a/lib/commands/command-info.bash +++ b/lib/commands/command-info.bash @@ -5,7 +5,7 @@ info_command() { printf "%s:\\n%s\\n\\n" "SHELL" "$($SHELL --version)" printf "%s:\\n%s\\n\\n" "ASDF VERSION" "$(asdf_version)" printf "%s:\\n%s\\n\\n" "ASDF ENVIRONMENT VARIABLES" "$(env | grep -E "ASDF_DIR|ASDF_DATA_DIR|ASDF_CONFIG_FILE|ASDF_DEFAULT_TOOL_VERSIONS_FILENAME")" - printf "%s:\\n%s\\n\\n" "ASDF INSTALLED PLUGINS" "$(asdf plugin list --urls)" + printf "%s:\\n%s\\n\\n" "ASDF INSTALLED PLUGINS" "$(asdf plugin list --urls --refs)" } info_command "$@"