Compare commits

...

2 Commits

Author SHA1 Message Date
Bruno Sutic fdb30228b1
Merge pull request #239 from FranklinYu/update-verbosely
Show the output of Git pull when updating plugins
2023-01-13 09:03:03 +01:00
Franklin Yu e504b8eec6 Show the output of Git pull when updating plugins
This tells users whether a plugin changed during the update.
2023-01-05 20:37:06 -08:00
1 changed files with 8 additions and 3 deletions

View File

@ -26,10 +26,15 @@ pull_changes() {
}
update() {
local plugin="$1"
$(pull_changes "$plugin" > /dev/null 2>&1) &&
echo_ok " \"$plugin\" update success" ||
local plugin="$1" output
output=$(pull_changes "$plugin" 2>&1)
if (( $? == 0 )); then
echo_ok " \"$plugin\" update success"
echo_ok "$(echo "$output" | sed -e 's/^/ | /')"
else
echo_err " \"$plugin\" update fail"
echo_err "$(echo "$output" | sed -e 's/^/ | /')"
fi
}
update_all() {