Skip to content

Commit

Permalink
corrected help command
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Nov 27, 2014
1 parent bc57324 commit f149e03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/CLI.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ CLI.prototype.afterPropertiesSet = function() {

commander
.command('dump')
.description('Dumps process data to ' + this._config.boss.rundir + '/processes.json')
.description('Dumps process data to ' + this._config.boss.confdir + '/processes.json')
.option('-v, --verbose', 'Prints detailed internal logging output')
.action(this.dump.bind(this))

commander
.command('restore')
.description('Restores processes from ' + this._config.boss.rundir + '/processes.json')
.description('Restores processes from ' + this._config.boss.confdir + '/processes.json')
.option('-v, --verbose', 'Prints detailed internal logging output')
.action(this.restore.bind(this))

Expand Down

0 comments on commit f149e03

Please sign in to comment.