summaryrefslogtreecommitdiff
path: root/notepadpp/debian/notepadpp-bin32.prerm
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-12-29 13:06:46 +0000
committerB Stack <bgstack15@gmail.com>2019-12-29 13:06:46 +0000
commit5dd2ccf0878b4d9939999cd7904e2361522c73d9 (patch)
tree0dd4e58c857c63e2f0e0b250ed66028effb35fc9 /notepadpp/debian/notepadpp-bin32.prerm
parentMerge branch 'freefilesync-bump' into 'master' (diff)
parentAdd notepad++ as notepadpp (diff)
downloadstackrpms-5dd2ccf0878b4d9939999cd7904e2361522c73d9.tar.gz
stackrpms-5dd2ccf0878b4d9939999cd7904e2361522c73d9.tar.bz2
stackrpms-5dd2ccf0878b4d9939999cd7904e2361522c73d9.zip
Merge branch 'notepadpp-bump' into 'master'
Add notepad++ as notepadpp See merge request bgstack15/stackrpms!112
Diffstat (limited to 'notepadpp/debian/notepadpp-bin32.prerm')
-rw-r--r--notepadpp/debian/notepadpp-bin32.prerm7
1 files changed, 7 insertions, 0 deletions
diff --git a/notepadpp/debian/notepadpp-bin32.prerm b/notepadpp/debian/notepadpp-bin32.prerm
new file mode 100644
index 0000000..d915573
--- /dev/null
+++ b/notepadpp/debian/notepadpp-bin32.prerm
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+case "$1" in
+ remove|deconfigure)
+ update-alternatives --remove notepadpp /usr/bin/notepadpp32
+ update-alternatives --remove x-editor /usr/bin/notepadpp32
+ ;;
+esac
bgstack15