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 4a735bd commit d6b5614Copy full SHA for d6b5614
src/cmd-prune
@@ -190,6 +190,9 @@ if os.path.exists('tmp/repo'):
190
for build in builds.get_builds():
191
meta = builds.get_build_meta(build['id'])
192
build_dir = builds.get_build_dir(build['id'])
193
+ # could happen if e.g. only the ostree artifact was uploaded
194
+ if 'oci-manifest' not in meta['images']:
195
+ continue
196
oci_manifest = os.path.join(build_dir, meta['images']['oci-manifest']['path'])
197
if os.path.exists(oci_manifest):
198
with open(oci_manifest) as f:
0 commit comments