1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-06-30 23:40:05 +01:00

Fix template expansion error.

This commit is contained in:
devlinjd 2015-09-17 05:06:09 -04:00
parent ed3fc12806
commit 8b57f9ce57

View File

@ -93,7 +93,7 @@ module.exports = function () {
var mk = FS.readFileSync( themeFile, 'utf8' );
// Compile and invoke the template!
mk = single( rez.rep, mk, fType, cssData, fName );
mk = single( rez, mk, fType, cssData, fName );
// Post-process and save the file
fType === 'html' && (mk = html( mk, themeFile, fOut ));