diff options
author | Micah Anderson <micah@riseup.net> | 2013-12-16 10:05:30 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-12-16 10:05:30 -0500 |
commit | 4425bc74d6bb679f143538027f28602bfe973425 (patch) | |
tree | 15cc7a749d68ade90a0aa00e86cc7007ee3cd667 | |
parent | 9fbbd45afce7d33767dff71acd1f3647e87d8940 (diff) |
fix bitmask trigger, again. I misunderstood how they work, just need to place the files
-rw-r--r-- | debian/bitmask.postinst | 26 | ||||
-rw-r--r-- | debian/bitmask.triggers | 1 | ||||
-rw-r--r-- | debian/changelog | 7 |
3 files changed, 7 insertions, 27 deletions
diff --git a/debian/bitmask.postinst b/debian/bitmask.postinst deleted file mode 100644 index a0ab0d78..00000000 --- a/debian/bitmask.postinst +++ /dev/null @@ -1,26 +0,0 @@ -#! /bin/sh -set -e - -case "$1" in - configure) - if [ -e /usr/share/icons/hicolor/icon-theme.cache ]; then - rm /usr/share/icons/hicolor/icon-theme.cache - fi - if [ -x /usr/bin/gtk-update-icon-cache-3.0 ]; then - gtk-update-icon-cache-3.0 -q -t -f /usr/share/icons/hicolor - elif [ -x /usr/bin/gtk-update-icon-cache ]; then - gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor - fi - ;; - triggered) - exit 0 - ;; - abort-upgrade|abort-remove|abort-deconfigure) - ;; - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# diff --git a/debian/bitmask.triggers b/debian/bitmask.triggers deleted file mode 100644 index 5d66bed0..00000000 --- a/debian/bitmask.triggers +++ /dev/null @@ -1 +0,0 @@ -interest /usr/share/icons/hicolor diff --git a/debian/changelog b/debian/changelog index e2d348cc..7c5a3162 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +bitmask (0.3.8.4) unstable; urgency=medium + + * Remove bitmask.trigger and bitmask.postinst, I misunderstood how + the triggers worked + + -- Micah Anderson <micah@debian.org> Mon, 16 Dec 2013 10:04:32 -0500 + bitmask (0.3.8.3) unstable; urgency=low * Fix postinst trigger |