13 lines
255 B
Text
13 lines
255 B
Text
|
#
|
||
|
# This script re-runs update-desktop-database if package is being updated.
|
||
|
#
|
||
|
|
||
|
if [ "${UPDATE}" = "yes" ]; then
|
||
|
case "${ACTION}" in
|
||
|
post)
|
||
|
echo "Updating desktop MIME database..."
|
||
|
usr/bin/update-desktop-database usr/share/applications
|
||
|
;;
|
||
|
esac
|
||
|
fi
|