Skip to content

Commit

Permalink
Fix WinDbg/TTD installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
xusheng6 committed Nov 4, 2024
1 parent 4e31c71 commit a3a01f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/adapters/dbgeng/install_windbg.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def install_windbg():

zip_file = zipfile.ZipFile(msix_file)
temp_dir = tempfile.mkdtemp()
inner_msix = zip_file.extract('windbg_win7-x64.msix', temp_dir)
print('Extracted windbg_win7-x64 to %s' % inner_msix)
inner_msix = zip_file.extract('windbg_win-x64.msix', temp_dir)
print('Extracted windbg_win-x64 to %s' % inner_msix)

install_target = os.path.join(binaryninja.user_directory(), 'windbg')
print('Installing to: %s' % install_target)
Expand Down

0 comments on commit a3a01f9

Please sign in to comment.