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 9cdb984 commit 5d9cc10Copy full SHA for 5d9cc10
src/python_gardenlinux_lib/oras/registry.py
@@ -583,8 +583,7 @@ def push_image_manifest(
583
file_path = os.path.join(build_artifacts_dir, artifact["file_name"])
584
585
if not os.path.exists(file_path):
586
- logger.error(f"{file_path} does not exist.")
587
- continue
+ raise ValueError(f"{file_path} does not exist.")
588
589
cleanup_blob = False
590
if os.path.isdir(file_path):
0 commit comments