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

set -e

#DEBHELPER#

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

