summaryrefslogtreecommitdiff
path: root/xdgmenumaker/debian/prerm
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-02-11 15:56:38 -0500
committerB Stack <bgstack15@gmail.com>2020-02-11 15:56:38 -0500
commitd91025a34e851f12c048fa347a304795a42a8d80 (patch)
tree945857b615487f4cff66532c8aafc3c4731ed6a1 /xdgmenumaker/debian/prerm
parentMerge branch 'xseticon-bump' into 'updates' (diff)
downloadstackrpms-d91025a34e851f12c048fa347a304795a42a8d80.tar.gz
stackrpms-d91025a34e851f12c048fa347a304795a42a8d80.tar.bz2
stackrpms-d91025a34e851f12c048fa347a304795a42a8d80.zip
add xdgmenumaker-user script and menu entry
Diffstat (limited to 'xdgmenumaker/debian/prerm')
-rw-r--r--xdgmenumaker/debian/prerm8
1 files changed, 8 insertions, 0 deletions
diff --git a/xdgmenumaker/debian/prerm b/xdgmenumaker/debian/prerm
new file mode 100644
index 0000000..81b3333
--- /dev/null
+++ b/xdgmenumaker/debian/prerm
@@ -0,0 +1,8 @@
+#!/bin/sh -e
+case "$1" in
+
+ remove|purge)
+ rm -f /etc/xdgmenumaker/* 2>/dev/null
+ ;;
+
+esac
bgstack15