blob: b31a8a6adb237571b8643c0c6f18c21f5ad56315 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh -e
# Remove the link /usr/share/apps/kworldwatch.
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/share/apps/kworldwatch ]; then
rm -f /usr/share/apps/kworldwatch
fi
#DEBHELPER#
exit 0
|