summaryrefslogtreecommitdiff
path: root/xdgmenumaker/debian/prerm
blob: ca421b5697d520e0aad11656d42c883ffefdd0f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

#DEBHELPER#

case "$1" in

   remove|purge)
      rm -f /etc/xdgmenumaker/* 2>/dev/null
      ;;

esac
bgstack15