#!/bin/bash

if [ ! -z "${REMOVE_CORRUPTED_PYC}" ]; then
    find /usr/lib/ -name '*.pyc' -type f -mtime -3 -size -512c -delete
fi
