11 lines
188 B
Text
11 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
|