From e8704e1374d580273681309b6be0d393140d809e Mon Sep 17 00:00:00 2001 From: devlinjd Date: Tue, 8 Dec 2015 22:22:14 -0500 Subject: [PATCH] Fix file generation glitch. --- src/core/theme.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/core/theme.js b/src/core/theme.js index 7752774..17a9dc5 100644 --- a/src/core/theme.js +++ b/src/core/theme.js @@ -110,12 +110,16 @@ Abstract theme representation. } // We should have a valid output format now. - formatsHash[ outFmt ] = - formatsHash[outFmt] || { outFormat: outFmt, files: [], symLinks: that.formats[ outFmt ].symLinks }; + formatsHash[ outFmt ] = formatsHash[outFmt] || { + outFormat: outFmt, + files: [] + }; // Create the file representation object. var obj = { + action: 'transform', path: absPath, + orgPath: PATH.relative(that.folder, absPath), ext: pathInfo.ext.slice(1), title: friendlyName( outFmt ), pre: outFmt,