File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
77### Changed
88- Initial debug configuration has new example to run current file
99### Fixed
10+ - Stop button does not kill all child processes
1011- Activate extension on command palette command
1112### Added
1213- ev3dev remote debugger is now a default debugger for Python files
Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ async function handleCustomDebugEvent(event: vscode.DebugSessionCustomEvent): Pr
308308 debugRestarting = event . body . restart ;
309309 device = ev3devBrowserProvider . getDeviceSync ( ) ;
310310 if ( activeDebugSessions . has ( event . session . id ) && device && device . isConnected ) {
311- device . exec ( 'conrun-kill --signal=SIGKILL' ) ;
311+ device . exec ( 'conrun-kill --signal=SIGKILL --group ' ) ;
312312 }
313313 // update remote file browser in case program created new files
314314 refresh ( ) ;
You can’t perform that action at this time.
0 commit comments