Merge pull request #92 from Graham42/faster_updating

Update plugins in parallel
This commit is contained in:
Graham McGregor 2016-12-03 12:04:23 -05:00 committed by GitHub
commit cfaf15b768
1 changed files with 5 additions and 4 deletions

View File

@ -27,7 +27,6 @@ pull_changes() {
update() {
local plugin="$1"
echo_ok "Updating \"$plugin\""
$(pull_changes "$plugin" > /dev/null 2>&1) &&
echo_ok " \"$plugin\" update success" ||
echo_err " \"$plugin\" update fail"
@ -41,9 +40,10 @@ update_all() {
local plugin_name="$(plugin_name_helper "$plugin")"
# updating only installed plugins
if plugin_already_installed "$plugin_name"; then
update "$plugin_name"
update "$plugin_name" &
fi
done
wait
}
update_plugins() {
@ -51,11 +51,12 @@ update_plugins() {
for plugin in $plugins; do
local plugin_name="$(plugin_name_helper "$plugin")"
if plugin_already_installed "$plugin_name"; then
update "$plugin_name"
update "$plugin_name" &
else
echo_err "$plugin_name not installed!"
echo_err "$plugin_name not installed!" &
fi
done
wait
}
main() {