File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -337,6 +337,14 @@ def main() -> None:
337
337
338
338
339
339
def _sign (args : argparse .Namespace ) -> None :
340
+ # `--rekor-bundle` is a temporary option, pending stabilization of the
341
+ # Sigstore bundle format.
342
+ if args .rekor_bundle :
343
+ logger .warning (
344
+ "--rekor-bundle is a temporary format, and will be removed in an "
345
+ "upcoming release of sigstore-python in favor of Sigstore-style bundles"
346
+ )
347
+
340
348
# `--no-default-files` has no effect on `--{signature,certificate,rekor-bundle}`, but we
341
349
# forbid it because it indicates user confusion.
342
350
if args .no_default_files and (
@@ -448,6 +456,14 @@ def _sign(args: argparse.Namespace) -> None:
448
456
449
457
450
458
def _verify (args : argparse .Namespace ) -> None :
459
+ # `--rekor-bundle` is a temporary option, pending stabilization of the
460
+ # Sigstore bundle format.
461
+ if args .rekor_bundle :
462
+ logger .warning (
463
+ "--rekor-bundle is a temporary format, and will be removed in an "
464
+ "upcoming release of sigstore-python in favor of Sigstore-style bundles"
465
+ )
466
+
451
467
# The presence of --rekor-bundle implies --require-rekor-offline.
452
468
args .require_rekor_offline = args .require_rekor_offline or args .rekor_bundle
453
469
You can’t perform that action at this time.
0 commit comments