summaryrefslogtreecommitdiff
path: root/distro/ubuntu/prerm
blob: 565c76089533c07cc13604505fdefd028b983b5e (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh -e

pkgname=mate-text-editor

if [ -f /usr/sbin/mateconfpkg ]; then
    /usr/sbin/mateconfpkg --uninstall ${pkgname}
fi

exit 0