aboutsummaryrefslogtreecommitdiffstats
path: root/debian/prerm
blob: e58c8a03dc6afcf8e603c2e9fbc317123b9ca649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

case "$1" in
    remove|upgrade)
        # This is to ensure that "old" doc files (which might not be
        # overwritten by new installs) get removed
        rm -f /usr/doc/scm
    ;;
esac

#DEBHELPER#