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

Restore app title.

This commit is contained in:
hacksalot 2016-01-05 09:38:21 -05:00
parent 2819faeb6f
commit ff23ee508b
2 changed files with 4 additions and 3 deletions

View File

@ -15,8 +15,7 @@ Error-handling routines for HackMyResume.
, FS = require('fs')
, FCMD = require('../hackmyapi')
, PATH = require('path')
, chalk = require('chalk')
, title = chalk.white.bold('\n*** HackMyResume v' + PKG.version + ' ***');
, chalk = require('chalk');
@ -55,7 +54,7 @@ Error-handling routines for HackMyResume.
break;
case HACKMYSTATUS.missingCommand:
msg = title + chalk.yellow("\nPlease ") + chalk.yellow.bold("give me a command") +
msg = chalk.yellow("Please ") + chalk.yellow.bold("give me a command") +
chalk.yellow(" (");
msg += Object.keys( FCMD.verbs ).map( function(v, idx, ar) {

View File

@ -128,6 +128,8 @@ Massage command-line args and setup Commander.js.
*/
function initialize() {
logMsg( title );
// Support case-insensitive sub-commands (build, generate, validate, etc.)..
var oVerb, verb = '', args = process.argv.slice(), cleanArgs = args.slice(2);
if( cleanArgs.length ) {