diff options
Diffstat (limited to 'debian/shotwell-common.postrm')
-rw-r--r-- | debian/shotwell-common.postrm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/shotwell-common.postrm b/debian/shotwell-common.postrm new file mode 100644 index 0000000..2390561 --- /dev/null +++ b/debian/shotwell-common.postrm @@ -0,0 +1,16 @@ +#!/bin/sh + +set -e + + +case "$1" in + purge|remove) + + # + # rebuild icon cache + # + gtk-update-icon-cache /usr/share/icons/hicolor + +esac + +#DEBHELPER# |