diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-05 08:36:00 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-05 08:36:00 +0000 |
commit | 7798ed0c5ad69a12c76c1778b8c9219e1117cf5b (patch) | |
tree | 31adc22b153e27b35b34200fef73a698f29c326b | |
parent | 81b439cec2e3459da4afeb1e3cdbbc6f90cda5dc (diff) | |
download | abuild-7798ed0c5ad69a12c76c1778b8c9219e1117cf5b.tar.gz abuild-7798ed0c5ad69a12c76c1778b8c9219e1117cf5b.tar.bz2 abuild-7798ed0c5ad69a12c76c1778b8c9219e1117cf5b.tar.xz abuild-7798ed0c5ad69a12c76c1778b8c9219e1117cf5b.zip |
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.
-rwxr-xr-x | abuild.in | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 } |