From 7798ed0c5ad69a12c76c1778b8c9219e1117cf5b Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 5 May 2011 08:36:00 +0000 Subject: [PATCH] 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. --- abuild.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/abuild.in b/abuild.in index ed0373c..8029647 100755 --- a/abuild.in +++ b/abuild.in @@ -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 }