Trimage/debian/trimage/DEBIAN/prerm
2017-07-09 13:18:00 +03:00

14 lines
251 B
Bash
Executable file

#!/bin/sh
set -e
# Automatically added by dh_python2:
if which pyclean >/dev/null 2>&1; then
pyclean -p trimage
else
dpkg -L trimage | grep \.py$ | while read file
do
rm -f "${file}"[co] >/dev/null
done
fi
# End automatically added section