v0.3.0
[case] / debian / postinst
1 #!/bin/sh
2 #
3 # see: dh_installdeb(1)
4
5 set -e
6
7 case "$1" in
8     configure)
9         gtk-update-icon-cache -f /usr/share/icons/hicolor
10     ;;
11
12     abort-upgrade|abort-remove|abort-deconfigure)
13     ;;
14
15     *)
16         echo "postinst called with unknown argument \`$1'" >&2
17         exit 1
18     ;;
19 esac
20
21 #DEBHELPER#
22
23 exit 0