mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
337b335c4d
Check if plugin exists before removing it
15 lines
313 B
Bash
15 lines
313 B
Bash
list_all_command() {
|
|
local plugin_name=$1
|
|
local plugin_path=$(get_plugin_path $plugin_name)
|
|
check_if_plugin_exists $plugin_name
|
|
|
|
local versions=$(bash ${plugin_path}/bin/list-all)
|
|
|
|
IFS=' ' read -a versions_list <<< "$versions"
|
|
|
|
for version in "${versions_list[@]}"
|
|
do
|
|
echo "${version}"
|
|
done
|
|
}
|