File: prerm

package info (click to toggle)
tex-common 6.20
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 252 kB
  • sloc: sh: 658; perl: 593; makefile: 26
file content (17 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# 
# prerm maintainer script for the Debian tex-common package.

# remove dirs in /usr/local if empty

set -e

case $1 in
  remove)
    rmdir /usr/local/share/texmf 2>/dev/null || true
    ;;
esac

#DEBHELPER#