blob: 253e5484adaecba00117dcf62532de4de1f250dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
#
# $FreeBSD$
#
# Remove leftover mimeinfo.cache files.
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
for mdir in %%MIMEDIRS%%; do
if [ -f ${mdir}/mimeinfo.cache ]; then
rm -f ${mdir}/mimeinfo.cache
fi
done
exit 0
|