mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-24 20:12:49 +00: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:
parent
a369defc15
commit
7492777b47
1 changed files with 4 additions and 0 deletions
|
|
@ -160,6 +160,10 @@ def cross_reference(
|
|||
if "path" in f and f["path"] is None:
|
||||
continue
|
||||
|
||||
# Skip release asset files (stored in GitHub releases, not bios/)
|
||||
if f.get("storage") == "release":
|
||||
continue
|
||||
|
||||
# Skip standalone-only files
|
||||
file_mode = f.get("mode", "both")
|
||||
if file_mode == "standalone":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue