stages/skopeo: Fix the remove-signatures option
It's defined on the options level, not on the destination level. A previous commit added a test for this.
This commit is contained in:
parent
2e771692a7
commit
1b5b015fef
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ def main(inputs, output, options):
|
|||
|
||||
destination = options["destination"]
|
||||
dest_type = destination["type"]
|
||||
remove_signatures = destination.get("remove-signatures")
|
||||
remove_signatures = options.get("remove-signatures")
|
||||
|
||||
for image in images.values():
|
||||
with containers.container_source(image) as (image_name, image_source):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue