1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-07-09 11:41:07 +01:00

Tweak missing file message for "new" command.

This commit is contained in:
hacksalot
2016-01-06 14:15:27 -05:00
parent 39e995213f
commit 830c36818e
2 changed files with 5 additions and 3 deletions

View File

@ -152,7 +152,8 @@ function initialize() {
// Override the .missingArgument behavior
Command.prototype.missingArgument = function(name) {
throw { fluenterror: HACKMYSTATUS.resumeNotFound };
if( this.name() !== 'new' )
throw { fluenterror: HACKMYSTATUS.resumeNotFound };
};
// Override the .helpInformation behavior