sources/skopeo: fix comment typo

This commit is contained in:
Achilleas Koutsou 2023-03-02 13:44:50 +01:00 committed by Ondřej Budai
parent 5f76ec03a7
commit be76d6f355

View file

@ -103,7 +103,7 @@ class SkopeoSource(sources.SourceService):
check=True)
# Verify that the digest supplied downloaded the correct container image id.
# The image id is the digest of the config, but skopeo can' currently
# The image id is the digest of the config, but skopeo can't currently
# get the config id, only the full config, so we checksum it ourselves.
res = subprocess.check_output(["skopeo", "inspect", "--raw", "--config", destination])
downloaded_id = "sha256:" + hashlib.sha256(res).hexdigest()