Skip to content

Commit

Permalink
Merge pull request #6 from cjkoepke/master
Browse files Browse the repository at this point in the history
Configure secret values as options instead of commands
  • Loading branch information
derrickreimer committed Jun 19, 2020
2 parents 4930a5d + afbbc6b commit 3f8e096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmds/secrets_cmds/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const humanizeField = name => {
}
};

exports.command = 'add <name> <value>';
exports.command = 'add <name> [value]';
exports.desc = 'Adds a secret';

exports.builder = yargs => {
Expand Down
2 changes: 1 addition & 1 deletion src/cmds/secrets_cmds/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const humanizeField = name => {
}
};

exports.command = 'update <name> <value>';
exports.command = 'update <name> [value]';
exports.desc = 'Updates a secret value';

exports.builder = yargs => {
Expand Down

0 comments on commit 3f8e096

Please sign in to comment.