mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
Wine cvdump bugfix (#388)
This commit is contained in:
parent
a95bdcc4ad
commit
343715af23
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue