mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-19 07:12:36 -05:00
fix: skip storage: release files in cross-reference
Files with storage: release are in GitHub release assets, not in bios/. Eliminates donpachi/sfz3mix/twotiger false positives. 149/149 tests pass. Cross-ref: 10 -> 7.
This commit is contained in:
@@ -160,6 +160,10 @@ def cross_reference(
|
|||||||
if "path" in f and f["path"] is None:
|
if "path" in f and f["path"] is None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# Skip release asset files (stored in GitHub releases, not bios/)
|
||||||
|
if f.get("storage") == "release":
|
||||||
|
continue
|
||||||
|
|
||||||
# Skip standalone-only files
|
# Skip standalone-only files
|
||||||
file_mode = f.get("mode", "both")
|
file_mode = f.get("mode", "both")
|
||||||
if file_mode == "standalone":
|
if file_mode == "standalone":
|
||||||
|
|||||||
Reference in New Issue
Block a user