File: postinst

package info (click to toggle)
otags 3.09.3-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 280 kB
  • ctags: 279
  • sloc: ml: 995; sh: 464; makefile: 147
file content (11 lines) | stat: -rw-r--r-- 183 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

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

#DEBHELPER#