️ Use stem instead of name
dl / lint (push) Failing after 1m3s Details
dl / docker (push) Has been skipped Details

This commit is contained in:
Michel Roux 2024-02-23 15:04:46 +01:00
parent 948ef26397
commit 694c1722f4
1 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ for console in path.iterdir():
# loop over roms without hashes
for rom in Path(path / "hashes" / console.name / "roms").iterdir():
if rom.is_file() and "Disc" not in rom.name:
if rom.is_file() and "Disc" not in rom.stem:
# get rom hash
with open(rom, "r") as file:
hash = file.read()
@ -53,14 +53,14 @@ for console in path.iterdir():
if "name" not in metadata:
continue
rom_name = rom.name.split("(")[0].strip().lower()
rom_name = rom.stem.split('.')[0].split("(")[0].strip().lower()
meta_name = metadata["name"].split("(")[0].strip().lower()
if rom_name == meta_name and (
"ref" in metadata or "logo" in metadata
):
ref = metadata["ref"] if "ref" in metadata else id
print(f"Found {ref} for {rom.name}")
print(f"Found {ref} for {rom.stem}")
metas[hash] = {"ref": ref}
break