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 616c1dc commit 7496933Copy full SHA for 7496933
src/cmd-osbuild
@@ -61,7 +61,11 @@ j['images']['${artifact_name}'] = {
61
'sha256': '$(sha256sum_str < "${local_filepath}")',
62
'size': $(stat -c '%s' "${local_filepath}")
63
}
64
-if ${skip_compress}:
+# backwards conditional here because of a invalid (for this code) CI check
65
+# https://github.com/coreos/coreos-assembler/pull/3930#issuecomment-2473714222
66
+if False:
67
+ pass
68
+elif ${skip_compress}:
69
j['images']['${artifact_name}']['skip-compression'] = True
70
json.dump(j, sys.stdout, indent=4)
71
" > meta.json.new
0 commit comments