#!/bin/sh

set -e

DIRS='/usr/lib/site-python/linda /usr/share/linda/checks'

if [ "$1" = upgrade ]; then
	for i in $DIRS; do
		for j in pyc pyo; do
			rm -f $i/*.$j
		done	
	done
fi

#DEBHELPER#

