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

Use relative paths in output.

This commit is contained in:
devlinjd 2015-10-04 15:05:44 -04:00
parent 6e6b55a826
commit 90440ae253

View File

@ -84,7 +84,7 @@ module.exports = function () {
var fOut = path.join( f.substring( 0, f.lastIndexOf('.') + 1 ) + fObj.ext );
// Generate!
_log( 'Generating ' + fType.toUpperCase() + ' resume: ' + fOut );
_log( 'Generating ' + fType.toUpperCase() + ' resume: ' + path.relative(process.cwd(), f) );
return fObj.gen.generate( rez, fOut, _opts.theme );
}
catch( ex ) {