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