blob: e82abb41da5b6d725183c92ce26ff4cd9abf4f9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
PATH=/bin:/usr/bin:/sbin:/usr/sbin:%%PREFIX%%/bin
export PATH
if [ "$2" = "POST-INSTALL" ]; then
echo "Running fc-cache to build fontconfig cache..."
fc-cache -f -v
exit 0
fi
|