diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2019-07-27 07:44:09 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2019-07-27 07:44:09 +0200 |
commit | a2b6ed4c1bbe865f8452afcdd1edd596951f49b3 (patch) | |
tree | 2e7e4dd152cad0afdc120b6fd7468c888648ee32 /debian/xsane-common.preinst | |
parent | 320a69a1d259525f78cf2e03839a538d3dedd4b1 (diff) | |
parent | 45bf9eb43fca688cd835073350e37dc2b2e3c476 (diff) |
Merge branch 'release/debian/0.999-7'debian/0.999-7
Diffstat (limited to 'debian/xsane-common.preinst')
-rw-r--r-- | debian/xsane-common.preinst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/xsane-common.preinst b/debian/xsane-common.preinst new file mode 100644 index 0000000..b319f56 --- /dev/null +++ b/debian/xsane-common.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +HTMLDOCDIR=/usr/share/doc/xsane-common/html + +if [ -d "$HTMLDOCDIR" ] && [ -L "$HTMLDOCDIR" ]; then + # Remove old directory and files that are now provided by xsane-common + rm -rf "$HTMLDOCDIR" +fi + + +#DEBHELPER# |