From 9888dd039fa3bf34f2046475aaa58b5b1cd0c331 Mon Sep 17 00:00:00 2001 From: Wall Date: Sat, 28 Feb 2009 18:57:52 +0000 Subject: [PATCH] debian/postinst: small code improvement --- debian/postinst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/debian/postinst b/debian/postinst index 29e1a27..57fc45c 100755 --- a/debian/postinst +++ b/debian/postinst @@ -7,8 +7,6 @@ set -e oldversion="$2" -if [ -z "$oldversion" ]; then - gtk-update-icon-cache -f /usr/share/icons/hicolor -fi +[ -z "$oldversion" ] && gtk-update-icon-cache -f /usr/share/icons/hicolor exit 0 -- 1.7.9.5