From d8b811fb92540218f040f9fe0d39c9bfc2e668fc Mon Sep 17 00:00:00 2001 From: Eugene Gagarin Date: Sat, 28 Feb 2009 17:31:00 +0300 Subject: [PATCH] added postinst script to debian/ --- debian/postinst | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 debian/postinst diff --git a/debian/postinst b/debian/postinst new file mode 100755 index 0000000..887ea06 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,11 @@ +#!/bin/sh +## ---------------------------------------------------------------------- +## debian/postinst : postinstallation script for findit +## ---------------------------------------------------------------------- + +## ---------------------------------------------------------------------- +set -e + +gtk-update-icon-cache -f /usr/share/icons/hicolor + +exit 0 -- 1.7.9.5