mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-06 18:45:13 +02:00
11 lines
254 B
Text
11 lines
254 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
|