mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
3492043241
Co-authored-by: James Hegedus <jthegedus@hey.com>
30 lines
888 B
Bash
30 lines
888 B
Bash
# -*- sh -*-
|
|
|
|
plugin_list_all_command() {
|
|
initialize_or_update_repository
|
|
|
|
local plugins_index_path
|
|
plugins_index_path="$(asdf_data_dir)/repository/plugins"
|
|
|
|
local plugins_local_path
|
|
plugins_local_path="$(get_plugin_path)"
|
|
|
|
if find "$plugins_index_path" -mindepth 1 -type d &>/dev/null; then
|
|
(
|
|
for index_plugin in "$plugins_index_path"/*; do
|
|
index_plugin_name=$(basename "$index_plugin")
|
|
source_url=$(get_plugin_source_url "$index_plugin_name")
|
|
installed_flag=" "
|
|
|
|
[[ -d "${plugins_local_path}/${index_plugin_name}" ]] && installed_flag='*'
|
|
|
|
printf "%s\t%s\n" "$index_plugin_name" "$installed_flag$source_url"
|
|
done
|
|
) | awk '{ printf("%-28s", $1); sub(/^[^*]/, " &", $2); $1=""; print $0 }'
|
|
else
|
|
printf "%s%s\n" "error: index of plugins not found at " "$plugins_index_path"
|
|
fi
|
|
}
|
|
|
|
plugin_list_all_command "$@"
|