10 lines
188 B
Text
10 lines
188 B
Text
#
|
|
# This script removes the mimeinfo.cache file before removing pkg.
|
|
#
|
|
if [ "$UPDATE" = "no" ]; then
|
|
case "${ACTION}" in
|
|
pre)
|
|
rm -f usr/share/applications/mimeinfo.cache
|
|
;;
|
|
esac
|
|
fi
|