asdf/lib/commands/plugin-push.sh
2015-05-21 10:01:09 +05:30

15 lines
383 B
Bash

plugin_push_command() {
local plugin_name=$1
if [ "$plugin_name" = "--all" ]; then
for dir in $(asdf_dir)/plugins/*; do
echo "Pushing $(basename $dir)..."
(cd "$dir" && git push)
done
else
local plugin_path=$(get_plugin_path $plugin_name)
check_if_plugin_exists $plugin_path
echo "Pushing $plugin_name..."
(cd $plugin_path; git push)
fi
}