File: python-pykka.preinst

package info (click to toggle)
python-pykka 1.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 392 kB
  • ctags: 530
  • sloc: python: 2,008; makefile: 118; sh: 8
file content (16 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

# Remove directory symlinks created by old python-pykka-doc
# This may be removed after Debian jessie is released
if [ -L /usr/share/doc/python-pykka/html ]; then
    rm -f /usr/share/doc/python-pykka/html
fi
if [ -L /usr/share/doc/python-pykka/rst ]; then
    rm -f /usr/share/doc/python-pykka/rst
fi

#DEBHELPER#

exit 0