Skip to content

Commit

Permalink
Do not exit from DebuggerStop unless resuming (#1784)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeeminglyScience authored May 2, 2022
1 parent b1014f1 commit e7efb40
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,10 @@ private void RunExecutionLoop(bool isForDebug = false)
PopPowerShell(RunspaceChangeAction.Exit);
}

return;
if (ShouldExitExecutionLoop)
{
return;
}
}
}

Expand Down

0 comments on commit e7efb40

Please sign in to comment.