diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-04 15:00:43 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-04 15:00:43 +0200 |
commit | 55921b1bd165430ace40e458b8a47699b5af6844 (patch) | |
tree | 25718ae9bcbbdc4631f0e11c0f1a307f5544a8c4 | |
parent | 466e887028b702f386b4569962314d463a7d5f2a (diff) |
Remove -y/-n aliases from --trust-yes/--trust-no options
-rw-r--r-- | bpkg/common.cli | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bpkg/common.cli b/bpkg/common.cli index 577b449..90c150b 100644 --- a/bpkg/common.cli +++ b/bpkg/common.cli @@ -207,12 +207,16 @@ namespace bpkg " } - bool --trust-yes|-y + // Note that if a command for which one can specify these options also + // have --yes/--no (for all prompts), then those values should be + // propagated to these ones. + // + bool --trust-yes { "Assume the answer to all authentication prompts is \cb{yes}." } - bool --trust-no|-n + bool --trust-no { "Assume the answer to all authentication prompts is \cb{no}." } |