1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 01:56:21 +00:00

Fix path glitch from recent changes.

This commit is contained in:
James Devlin 2015-09-02 17:13:14 -04:00
parent 818a071433
commit ad94fcbcef

View File

@ -70,8 +70,7 @@ module.exports = function () {
// Load the theme template
var fName = f.substring( f.lastIndexOf('.') + 1 );
var fObj = _fmts.filter( function(_f) { return _f.name === fName; } )[0];
var fOut = path.join( process.cwd(),
f.substring( 0, f.lastIndexOf('.') + 1 ) + fObj.ext );
var fOut = path.join( f.substring( 0, f.lastIndexOf('.') + 1 ) + fObj.ext );
console.log( 'Generating ' + fName.toUpperCase() + ' resume: ' + fOut );
var themeFile = path.join( __dirname, '../../blueprint/', _opts.theme,
fName + '.' + (fObj.fmt || fObj.ext));