We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 345fd2f commit efca1ebCopy full SHA for efca1eb
src/sign.py
@@ -65,7 +65,7 @@ def _arguments() -> argparse.Namespace:
65
help="paths to pem encoded certificate files or a single file"
66
+ "containing a chain",
67
required=False,
68
- type=list[str],
+ type=str,
69
default=[],
70
nargs="+",
71
dest="cert_chain_path",
src/verify.py
@@ -63,7 +63,8 @@ def _arguments() -> argparse.Namespace:
63
help="paths to PEM encoded certificate files or a single file"
64
+ "used as the root of trust",
+ nargs="+",
dest="root_certs",
)
0 commit comments