Skip to content

Commit 05e4149

Browse files
DevinwongCopilot
andauthored
fix: use compact JSON in ANC hotfix injection (#8410)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b8187bc commit 05e4149

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hotfix/anc_hotfix_generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def read_hotfix_version():
5050

5151
def build_hotfix_entry(version):
5252
"""Build the write_files YAML lines for the hotfix JSON config."""
53-
hotfix_json = json.dumps({"version": version})
53+
hotfix_json = json.dumps({"version": version}, separators=(',', ':'))
5454
return [
5555
f"\n",
5656
f"{BEGIN_MARKER}\n",

0 commit comments

Comments
 (0)