File: prerm

package info (click to toggle)
otags 4.01.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 592 kB
  • ctags: 533
  • sloc: ml: 2,695; sh: 496; makefile: 239
file content (24 lines) | stat: -rwxr-xr-x 368 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
# prerm script for otags
#
# see: dh_installdeb(1)

set -e

case "$1" in
  remove|upgrade)
    rm -f /var/lib/otags/vi/TAGS
    rm -f /var/lib/otags/emacs/TAGS
    rm -f /var/lib/otags/TAGS
    rm -f /var/lib/otags/tags
  ;;

esac


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

#DEBHELPER#

exit 0