summaryrefslogtreecommitdiff
path: root/debian/shotwell-common.postrm
blob: 63c29ce96bf7ce957b9a38293d5b857d7d4bed0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e


case "$1" in
    purge|remove)

    #
    # rebuild icon cache
    #
    if [ -x gtk-update-icon-cache ] ; then
	gtk-update-icon-cache /usr/share/icons/hicolor
    fi

esac

#DEBHELPER#