updating icon cache only on first install
[findit] / debian / postinst
1 #!/bin/sh
2 ## ----------------------------------------------------------------------
3 ## debian/postinst : postinstallation script for findit
4 ## ----------------------------------------------------------------------
5
6 ## ----------------------------------------------------------------------
7 set -e
8
9 oldversion="$2"
10 if [ -z "$oldversion" ]; then
11   gtk-update-icon-cache -f /usr/share/icons/hicolor
12 fi
13
14 exit 0