Wine cvdump bugfix (#388)

This commit is contained in:
MS 2023-12-29 11:23:42 -05:00 committed by GitHub
parent a95bdcc4ad
commit 343715af23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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