Skip to content
Snippets Groups Projects
Commit 7798ed0c authored by Natanael Copa's avatar Natanael Copa
Browse files

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.
parent 81b439ce
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment