Files
MSYS2-packages/filesystem/08-xml-catalog.post
2014-11-12 21:07:37 +03:00

13 lines
224 B
Plaintext

maybe_create_xml_catalog ()
{
if [ ! -f "/etc/xml/catalog" ]
then
/usr/bin/mkdir -p /etc/xml
/usr/bin/xmlcatalog --noout --create /etc/xml/catalog
MAYBE_FIRST_START=true
fi
}
maybe_create_xml_catalog