File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/client/common/installer Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export abstract class ModuleInstaller implements IModuleInstaller {
105
105
pythonPath ,
106
106
args . concat ( [ '--user' ] ) ,
107
107
token ,
108
+ executionInfo . useShell ,
108
109
) ;
109
110
}
110
111
} else {
@@ -114,6 +115,7 @@ export abstract class ModuleInstaller implements IModuleInstaller {
114
115
executionInfo . execPath ! ,
115
116
executionInfoArgs ,
116
117
token ,
118
+ executionInfo . useShell ,
117
119
) ;
118
120
}
119
121
} ;
@@ -193,8 +195,8 @@ export abstract class ModuleInstaller implements IModuleInstaller {
193
195
resource : InterpreterUri | undefined ,
194
196
command : string ,
195
197
args : string [ ] ,
196
- token ? : CancellationToken ,
197
- useShell ? : boolean ,
198
+ token : CancellationToken | undefined ,
199
+ useShell : boolean | undefined ,
198
200
) {
199
201
const options : TerminalCreationOptions = { } ;
200
202
if ( isResource ( resource ) ) {
You can’t perform that action at this time.
0 commit comments