From f149e035da07fe5470b24e46f680a53a57e4ef56 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Thu, 27 Nov 2014 13:13:30 +0000 Subject: [PATCH] corrected help command --- lib/CLI.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))