third_party.pylibs.pylint.src/debian/pylint.prerm

15 lines
155 B
Plaintext
Raw Normal View History

2006-04-26 10:48:09 +00:00
#! /bin/sh -e
#
# remove .pyc and .pyo files
dpkg --listfiles pylint |
awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
xargs rm -f >&2
#DEBHELPER#
exit 0