mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-23 01:10:27 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@214 e7d03fd6-7b0d-0410-9947-9c21f3af8025
16 lines
329 B
Bash
Executable file
16 lines
329 B
Bash
Executable file
#!/bin/sh -e
|
|
#
|
|
# Written 1998 by Gregor Hoffleit <flight@debian.org>.
|
|
# used by Bastian Kleineidam for LinkChecker
|
|
|
|
PACKAGE=linkchecker
|
|
|
|
dpkg --listfiles $PACKAGE |
|
|
awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
|
|
xargs rm -f >&2
|
|
|
|
rmdir /usr/lib/python1.5/site-packages/linkcheck 2>/dev/null || true
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|