From 46d64143533fc42ba28bcd16caa692bce6bae057 Mon Sep 17 00:00:00 2001 From: Patrick Ulbrich Date: Sat, 21 Jun 2014 17:34:03 +0200 Subject: [PATCH] added --quiet option --- mailnag.install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mailnag.install b/mailnag.install index 567fe22..600011c 100644 --- a/mailnag.install +++ b/mailnag.install @@ -1,16 +1,16 @@ post_install() { - gtk-update-icon-cache /usr/share/icons/hicolor + gtk-update-icon-cache --quiet /usr/share/icons/hicolor echo 'To configure Mailnag run mailnag-config.' } post_upgrade() { - gtk-update-icon-cache /usr/share/icons/hicolor + gtk-update-icon-cache --quiet /usr/share/icons/hicolor echo 'IMPORTANT NOTE: As of version 1.0 the format of the config file has changed.' echo 'It is recommended to move or delete ~/.config/mailnag/mailnag.cfg' } post_remove() { - gtk-update-icon-cache /usr/share/icons/hicolor + gtk-update-icon-cache --quiet /usr/share/icons/hicolor }