#!/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
