#!/bin/sh

# Remove pre-compiled python files on package removal
if [ ${1} == "remove" ]; then
	rm -f /opt/barriosquare/*.pyc
fi
