Skip to content

Commit

Permalink
Merged in feature/fix-project-name-summary (pull request #50)
Browse files Browse the repository at this point in the history
Fix --project-name summary when displaying help text for 'project scale'
  • Loading branch information
Francesca Varney committed Jul 1, 2015
2 parents 2737712 + 06a0059 commit a541a48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/routes/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,11 +307,11 @@ module.exports = function (modulus) {
help.add('scale', function () {
this.line('project scale <servos>'.verbose);
this.line('Scales a project to use the number of servos given.'.input);
this.line(' -p, --project-name Name of the project to retrieve logs from. Prompts are skipped when specified.'.input);
this.line(' -p, --project-name Name of the project to scale. Prompts are skipped when specified.'.input);
});

modulus.program
.option('-p, --project-name [value]', 'Name of the project to retrieve logs from. Prompts are skipped when specified');
.option('-p, --project-name [value]', 'Name of the project to scale. Prompts are skipped when specified');

modulus.program
.command('project scale')
Expand Down

0 comments on commit a541a48

Please sign in to comment.