File: postrm

package info (click to toggle)
tex4ht 20011214-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,272 kB
  • ctags: 992
  • sloc: xml: 17,548; ansic: 9,389; makefile: 129; sh: 43; sed: 8
file content (13 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = remove ] ; then
  command -v texhash > /dev/null 2>&1 && texhash || true
fi

if [ "$1" = purge ] ; then
  rm -rf /etc/tex4ht
  fi

#DEBHELPER#