1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-10 07:47:07 +01:00

Restore canonical output filename.

This commit is contained in:
devlinjd
2015-12-09 05:08:10 -05:00
parent 2abfe4426c
commit 0395792359
2 changed files with 6 additions and 3 deletions

View File

@ -196,7 +196,7 @@ Template-based resume generator base for FluentCV.
var thisFilePath = PATH.join( outFolder, tplInfo.orgPath );
try {
MKDIRP.sync( PATH.dirname(thisFilePath) );
FS.writeFileSync( thisFilePath, mk, { encoding: 'utf8', flags: 'w' } );
FS.writeFileSync( tplInfo.major ? f : thisFilePath, mk, { encoding: 'utf8', flags: 'w' } );
}
catch(ex) {
console.log(ex);