File: libshhmsg1-dev.postinst

package info (click to toggle)
shhmsg 1.4.2-1.1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: ansic: 319; makefile: 301; sh: 20
file content (12 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# use bash explicitly because the DEBHELPER part uses 'command -v'
set -e

if [ "$1" = "configure" ]; then
        if [ -d /usr/doc -a -h /usr/doc/libshhmsg1-dev -a -d /usr/share/doc/libshhmsg1-dev ]; then
                rm -f /usr/doc/libshhmsg1-dev
        fi
fi

#DEBHELPER#
exit 0