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

Adjust output.

This commit is contained in:
devlinjd 2015-12-02 15:10:38 -05:00
parent 5b3a25c461
commit 92ca11f23c
2 changed files with 4 additions and 3 deletions

View File

@ -235,7 +235,7 @@ module.exports = function () {
dst = src || ['resume.json']; dst = src || ['resume.json'];
dst.forEach( function( t ) { dst.forEach( function( t ) {
var safeFormat = opts.format.toUpperCase(); var safeFormat = opts.format.toUpperCase();
_log('Creating '.useful +safeFormat.useful.bold+ ' resume: '.useful + t.useful.bold); _log('Creating new '.useful +safeFormat.useful.bold+ ' resume: '.useful + t.useful.bold);
MKDIRP.sync( path.dirname( t ) ); // Ensure dest folder exists; MKDIRP.sync( path.dirname( t ) ); // Ensure dest folder exists;
FLUENT[ safeFormat + 'Resume' ].default().save( t ); FLUENT[ safeFormat + 'Resume' ].default().save( t );
}); });

View File

@ -1,13 +1,14 @@
Usage: Usage:
fluentcv <COMMAND> <SOURCES> [TO <TARGETS>] [-t <THEME>] fluentcv <COMMAND> <SOURCES> [TO <TARGETS>] [-t <THEME>] [-f <FORMAT>]
<COMMAND> should be BUILD, NEW, CONVERT, VALIDATE, or HELP. <SOURCES> should <COMMAND> should be BUILD, NEW, CONVERT, VALIDATE, or HELP. <SOURCES> should
be the path to one or more FRESH or JSON Resume format resumes. <TARGETS> be the path to one or more FRESH or JSON Resume format resumes. <TARGETS>
should be the name of the destination resume to be created, if any. The should be the name of the destination resume to be created, if any. The
<THEME> parameter should be the name of a predefined theme (for example: <THEME> parameter should be the name of a predefined theme (for example:
COMPACT, MINIMIST, MODERN, or HELLO-WORLD) or the relative path to a custom COMPACT, MINIMIST, MODERN, or HELLO-WORLD) or the relative path to a custom
theme. theme. <FORMAT> should be either FRESH (for a FRESH-format resume) or JRS
(for a JSON Resume-format resume).
fluentcv BUILD resume.json TO out/resume.all fluentcv BUILD resume.json TO out/resume.all
fluentcv NEW resume.json fluentcv NEW resume.json