Wine cvdump bugfix

This commit is contained in:
disinvite 2023-12-29 11:17:10 -05:00
parent a95bdcc4ad
commit b11f1b987f

View File

@ -56,7 +56,7 @@ def cmd_line(self) -> List[str]:
if os_name == "nt":
return [cvdump_exe, *flags, self._pdb]
return ["wine", *flags, cvdump_exe, winepath_unix_to_win(self._pdb)]
return ["wine", cvdump_exe, *flags, winepath_unix_to_win(self._pdb)]
def run(self) -> CvdumpParser:
p = CvdumpParser()