File: tex4ht-common.postrm

package info (click to toggle)
tex4ht 20080701-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 41,280 kB
  • ctags: 2,625
  • sloc: ansic: 12,111; java: 2,991; sh: 922; perl: 346; makefile: 113
file content (15 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

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

if [ "$1" = purge ] ; then
  if command -v update-texmf > /dev/null 2>&1 ; then
    update-texmf
  fi
fi

#DEBHELPER#