From 8b57f9ce57a4deb065a2147b5e6c3a3657ae1e36 Mon Sep 17 00:00:00 2001 From: devlinjd Date: Thu, 17 Sep 2015 05:06:09 -0400 Subject: [PATCH] Fix template expansion error. --- src/scrappy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scrappy.js b/src/scrappy.js index c55b67e..a520bbe 100644 --- a/src/scrappy.js +++ b/src/scrappy.js @@ -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 ));