mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
27 lines
305 B
Bash
27 lines
305 B
Bash
#!/bin/sh
|
|
# prerm script for moz
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|upgrade|deconfigure)
|
|
;;
|
|
|
|
failed-upgrade)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
gtk-update-icon-cache /usr/share/icons/hicolor
|
|
|
|
|
|
exit 0
|
|
|
|
|