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

set -e

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

#DEBHELPER#
