mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
15 lines
387 B
Bash
15 lines
387 B
Bash
plugin_update_command() {
|
|
local plugin_name=$1
|
|
if [ "$plugin_name" = "--all" ]; then
|
|
for dir in $(asdf_dir)/plugins/*; do
|
|
echo "Updating $(basename $dir)..."
|
|
(cd "$dir" && git pull)
|
|
done
|
|
else
|
|
local plugin_path=$(get_plugin_path $plugin_name)
|
|
check_if_plugin_exists $plugin_path
|
|
echo "Updating $plugin_name..."
|
|
(cd $plugin_path; git pull)
|
|
fi
|
|
}
|