From 83e00a9d3683790ef4f1e40a3c693d0ce744a8c8 Mon Sep 17 00:00:00 2001 From: Raimund Hook Date: Fri, 10 May 2024 16:43:39 +0100 Subject: [PATCH] feat: add messages for bulk install visibility Add downloading and installing messages Signed-off-by: Raimund Hook --- lib/functions/installs.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/functions/installs.bash b/lib/functions/installs.bash index 036c1dab9..acb40180c 100644 --- a/lib/functions/installs.bash +++ b/lib/functions/installs.bash @@ -194,6 +194,7 @@ install_tool_version() { if [ -d "$install_path" ]; then printf "%s %s is already installed\n" "$plugin_name" "$full_version" else + printf "%s %s is being downloaded\n" "$plugin_name" "$full_version" if [ -f "${plugin_path}/bin/download" ]; then # Not a legacy plugin @@ -216,6 +217,7 @@ install_tool_version() { local download_exit_code=$? if [ $download_exit_code -eq 0 ]; then ( + printf "%s %s is being installed\n" "$plugin_name" "$full_version" # shellcheck disable=SC2031 export ASDF_INSTALL_TYPE=$install_type # shellcheck disable=SC2031