#!/bin/sh
set -e

if [ "$1" = "remove" -o "$1" = "purge" ] ; then
    if [ -x /usr/bin/texhash ] ; then
	texhash
    fi
fi


