Update packaging script

This commit is contained in:
Kevin Yue
2024-03-11 07:55:49 -04:00
parent e94661b213
commit 59dee3d767
5 changed files with 24 additions and 3 deletions

14
packaging/deb/postrm Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
set -e
case "$1" in
purge|remove|upgrade)
# Remove the gpgui binary downloaded at runtime
rm -f /usr/bin/gpgui
;;
*)
;;
esac
exit 0