abuild: be quiet when uninstalling build dependencies

We don't really need to see what packages gets uninstalled, but error
messages might be nice to see. So we are quiet when uninstalling.
This commit is contained in:
Natanael Copa 2011-05-05 08:36:00 +00:00
parent 81b439cec2
commit 7798ed0c5a
1 changed files with 2 additions and 1 deletions

View File

@ -83,7 +83,8 @@ set_xterm_title() {
cleanup() {
set_xterm_title ""
if [ -z "$install_after" ] && [ -n "$uninstall_after" ]; then
$SUDO $APK del $apk_opt_wait $uninstall_after
msg "Uninstalling dependencies..."
$SUDO $APK del --quiet $apk_opt_wait $uninstall_after
fi
}