asdf/lib/commands/plugin-list-all.sh

10 lines
200 B
Bash
Raw Normal View History

2017-08-24 19:29:23 -07:00
plugin_list_all_command() {
initialize_or_update_repository
2017-09-04 10:04:56 -07:00
local plugins_path
plugins_path="$(asdf_dir)/repository/plugins"
2017-08-24 19:29:23 -07:00
for plugin in $plugins_path/*; do
2017-09-04 10:04:56 -07:00
basename "$plugin"
2017-08-24 19:29:23 -07:00
done
}