File: postrm

package info (click to toggle)
bluefish 1.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,964 kB
  • ctags: 2,378
  • sloc: xml: 66,524; ansic: 39,556; sh: 3,201; makefile: 494
file content (21 lines) | stat: -rwxr-xr-x 424 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh
# postrm script for bluefish
#
# see: dh_installdeb(1)

set -e

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

if [ -x /usr/bin/update-mime-database ] ; then
        /usr/bin/update-mime-database /usr/share/mime
fi

if [ -x /usr/bin/update-desktop-database ] ; then
        /usr/bin/update-desktop-database /usr/share/applications
fi

exit 0