File: postinst

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 (22 lines) | stat: -rwxr-xr-x 358 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
#!/bin/sh
# postinst script for otags
#
# see: dh_installdeb(1)

set -e

case "$1" in
  configure)
    echo -n "Updating system-wide tags tables...(this may take a minute) "
    update-otags 2> /dev/null
    echo "done."
  ;;
esac


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

#DEBHELPER#

exit 0