mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-0: fix for control-c at startup
This commit is contained in:
parent
ea2679593b
commit
5bc70c4081
1 changed files with 4 additions and 1 deletions
|
@ -55,7 +55,10 @@ def main():
|
|||
cmd.ghidra_trace_sync_enable()
|
||||
|
||||
# TODO: HACK
|
||||
dbg.wait()
|
||||
try:
|
||||
dbg.wait()
|
||||
except KeyboardInterrupt as ki:
|
||||
dbg.interrupt()
|
||||
|
||||
cmd.repl()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue