File tree 3 files changed +2
-2
lines changed
3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export class PowerShellProcess {
42
42
path . resolve (
43
43
__dirname ,
44
44
this . bundledModulesPath ,
45
- "../scripts /Start-EditorServices.ps1" ) ;
45
+ "PowerShellEditorServices /Start-EditorServices.ps1" ) ;
46
46
47
47
const editorServicesLogPath = this . log . getLogFilePath ( logFileName ) ;
48
48
Original file line number Diff line number Diff line change @@ -164,7 +164,6 @@ export class SessionManager implements Middleware {
164
164
}
165
165
166
166
this . editorServicesArgs =
167
- "-EditorServicesVersion '" + this . requiredEditorServicesVersion + "' " +
168
167
"-HostName 'Visual Studio Code Host' " +
169
168
"-HostProfileId 'Microsoft.VSCode' " +
170
169
"-HostVersion '" + this . hostVersion + "' " +
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ task RestoreNodeModules -If { -not (Test-Path "$PSScriptRoot/node_modules") } {
67
67
68
68
task Clean {
69
69
Write-Host " `n ### Cleaning vscode-powershell`n " - ForegroundColor Green
70
+ Remove-Item .\modules\* - Exclude " README.md" - Recurse - Force - ErrorAction Ignore
70
71
Remove-Item .\out - Recurse - Force - ErrorAction Ignore
71
72
}
72
73
You can’t perform that action at this time.
0 commit comments