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