summaryrefslogtreecommitdiffstats
path: root/debian/thunderbird.prerm
blob: 81a5211a13068c407816d8abfc99f776b08eb965 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

LIBDIR=/usr/lib/thunderbird

if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] || [ "$1" = upgrade ]; then
    rm -f $LIBDIR/.autoreg
fi

#DEBHELPER#