File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/vs/workbench/services/extensions/electron-browser Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " code-oss-dev" ,
3
- "version" : " 1.39.0 " ,
3
+ "version" : " 1.39.1 " ,
4
4
"distro" : " 0384a381913bc4775eb0c45632f2e0d66f8b7f1d" ,
5
5
"author" : {
6
6
"name" : " Microsoft Corporation"
Original file line number Diff line number Diff line change @@ -127,7 +127,8 @@ export class ExtensionHostProcessWorker implements IExtensionHostStarter {
127
127
if ( ! this . _messageProtocol ) {
128
128
this . _messageProtocol = Promise . all ( [
129
129
this . _tryListenOnPipe ( ) ,
130
- ! this . _environmentService . args [ 'disable-inspect' ] ? this . _tryFindDebugPort ( ) : Promise . resolve ( null )
130
+ // !this._environmentService.args['disable-inspect'] ? this._tryFindDebugPort() : Promise.resolve(null)
131
+ ( this . _environmentService . args [ 'inspect-extensions' ] || this . _environmentService . args [ 'inspect-brk-extensions' ] ) ? this . _tryFindDebugPort ( ) : Promise . resolve ( null )
131
132
] ) . then ( data => {
132
133
const pipeName = data [ 0 ] ;
133
134
const portData = data [ 1 ] ;
You can’t perform that action at this time.
0 commit comments