summaryrefslogtreecommitdiff
path: root/debian/shotwell.postrm
blob: 2dbce779c9ada21cc145e14ea483057f947ad0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

if [ "$1" = purge ]; then

    #
    # remove backup files
    #
    if [ -e /usr/lib/shotwell-video-thumbnailer.org ] ; then
	rm -f /usr/lib/shotwell-video-thumbnailer.org
    fi
fi

#DEBHELPER#