Skip to content

Commit

Permalink
GP-0: fix for control-c at startup
Browse files Browse the repository at this point in the history
  • Loading branch information
d-millar authored and ghidra1 committed May 22, 2024
1 parent ea26795 commit 5bc70c4
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 5bc70c4

Please sign in to comment.