summaryrefslogtreecommitdiff
path: root/debian/shotwell-common.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/shotwell-common.postrm')
-rw-r--r--debian/shotwell-common.postrm18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/shotwell-common.postrm b/debian/shotwell-common.postrm
new file mode 100644
index 0000000..63c29ce
--- /dev/null
+++ b/debian/shotwell-common.postrm
@@ -0,0 +1,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#