aboutsummaryrefslogtreecommitdiff
path: root/debian/zinc-python.prerm.debhelper
blob: 7b868c71cd665c179f55ce90895865e675f97a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

# Automatically added by dh_python2:
if which pyclean >/dev/null 2>&1; then
	pyclean -p zinc-python 
else
	dpkg -L zinc-python | grep \.py$ | while read file
	do
		rm -f "${file}"[co] >/dev/null
  	done
fi

# End automatically added section