File tree Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -87,10 +87,14 @@ optional arguments:
87
87
times to increase verbosity (default: 0)
88
88
-V, --version show program's version number and exit
89
89
--staging Use sigstore's staging instance, instead of the default
90
- production instance (default: False)
90
+ production instance. Mutually exclusive with other
91
+ instance configuration arguments. (default: False)
91
92
--instance URL Use a given Sigstore instance URL, instead of the
92
- default production instance (default: None)
93
- --trust-config FILE The client trust configuration to use (default: None)
93
+ default production instance. Mutually exclusive with
94
+ other instance configuration arguments. (default: None)
95
+ --trust-config FILE The client trust configuration to use. Mutually
96
+ exclusive with other instance configuration arguments.
97
+ (default: None)
94
98
```
95
99
<!-- @end-sigstore-help@ -->
96
100
Original file line number Diff line number Diff line change @@ -263,19 +263,28 @@ def _parser() -> argparse.ArgumentParser:
263
263
"--staging" ,
264
264
action = "store_true" ,
265
265
default = _boolify_env ("SIGSTORE_STAGING" ),
266
- help = "Use sigstore's staging instance, instead of the default production instance" ,
266
+ help = (
267
+ "Use sigstore's staging instance, instead of the default production instance."
268
+ " Mutually exclusive with other instance configuration arguments."
269
+ ),
267
270
)
268
271
global_instance_options .add_argument (
269
272
"--instance" ,
270
273
metavar = "URL" ,
271
274
type = str ,
272
- help = "Use a given Sigstore instance URL, instead of the default production instance" ,
275
+ help = (
276
+ "Use a given Sigstore instance URL, instead of the default production instance."
277
+ " Mutually exclusive with other instance configuration arguments."
278
+ ),
273
279
)
274
280
global_instance_options .add_argument (
275
281
"--trust-config" ,
276
282
metavar = "FILE" ,
277
283
type = Path ,
278
- help = "The client trust configuration to use" ,
284
+ help = (
285
+ "Use given client trust configuration, instead of using the default production"
286
+ " instance. Mutually exclusive with other instance configuration arguments."
287
+ ),
279
288
)
280
289
subcommands = parser .add_subparsers (
281
290
required = True ,
You can’t perform that action at this time.
0 commit comments