From 99993bddfc6d3a2c4d31b4c4c1fb80b1a1d20040 Mon Sep 17 00:00:00 2001 From: Eugene Date: Wed, 10 Oct 2018 13:26:17 -0400 Subject: [PATCH] improve messaging --- src/commands/configure.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/configure.js b/src/commands/configure.js index 4674f20bf..191216365 100644 --- a/src/commands/configure.js +++ b/src/commands/configure.js @@ -11,9 +11,9 @@ class ConfigureCommand extends TerraformCommand { */ configure() { this.setName('configure') - .setDescription('add, update or remove data from terrahub config files') - .addOption('config', 'c', 'config', String, '') - .addOption('global', 'G', 'fefgjiosgis', Boolean, false); + .setDescription('add, change or remove config parameters from terrahub config files') + .addOption('config', 'c', 'Configuration parameter to be affected by command execution', String, '') + .addOption('global', 'G', 'Update global config file instead of root or local', Boolean, false); } /** @@ -125,4 +125,4 @@ class ConfigureCommand extends TerraformCommand { } } -module.exports = ConfigureCommand; \ No newline at end of file +module.exports = ConfigureCommand;