#!/bin/sh
# postrm script for app-data-medibuntu

set -e

#DEBHELPER#

if [ "$1" = "remove" ] && [ -x /usr/sbin/update-app-install ]; then
	# cache the application data
	/usr/sbin/update-app-install || true
fi

