diff --git a/lib/CLI.js b/lib/CLI.js index ded5d112..59742d77 100644 --- a/lib/CLI.js +++ b/lib/CLI.js @@ -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))