blob: 98b07d653a46587f7f6efe15775c9d5256c53050 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/node
const fs = require( "fs" );
const smallconf = fs.readFileSync( "./small-templ.xml" );
const conf = fs.readFileSync( "./rc-templ.xml" ).toString();
fs.writeFileSync( "./rc.xml", conf.replace( "<CustomFontConfig></CustomFontConfig>", smallconf ) );
|