mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
87137e4103
* Ban `ls` command * Update banned commands test so it only checks bash and sh files * Only allow `ls` for resolving symlinks * Replace `ls` commands with `find`
30 lines
891 B
Bash
30 lines
891 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 "$@"
|