fix: merge script now outputs to android directory

This commit is contained in:
2026-02-11 08:03:17 +03:00
parent 378605416a
commit b816294af9
+4
View File
@@ -214,6 +214,10 @@ def merge_version(version: str = "v22", filter_broken: bool = True):
root_output = OUTPUT_DIR / "chains.json"
save_json(root_output, merged)
# Also save to android subdirectory (this is what the app fetches)
android_output = OUTPUT_DIR / version / "android" / "chains.json"
save_json(android_output, merged)
return True