Skip to content

Commit 19f6249

Browse files
committed
Update start script location
1 parent 891bca8 commit 19f6249

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/process.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class PowerShellProcess {
4242
path.resolve(
4343
__dirname,
4444
this.bundledModulesPath,
45-
"../scripts/Start-EditorServices.ps1");
45+
"PowerShellEditorServices/Start-EditorServices.ps1");
4646

4747
const editorServicesLogPath = this.log.getLogFilePath(logFileName);
4848

src/session.ts

-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ export class SessionManager implements Middleware {
164164
}
165165

166166
this.editorServicesArgs =
167-
"-EditorServicesVersion '" + this.requiredEditorServicesVersion + "' " +
168167
"-HostName 'Visual Studio Code Host' " +
169168
"-HostProfileId 'Microsoft.VSCode' " +
170169
"-HostVersion '" + this.hostVersion + "' " +

vscode-powershell.build.ps1

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ task RestoreNodeModules -If { -not (Test-Path "$PSScriptRoot/node_modules") } {
6767

6868
task Clean {
6969
Write-Host "`n### Cleaning vscode-powershell`n" -ForegroundColor Green
70+
Remove-Item .\modules\* -Exclude "README.md" -Recurse -Force -ErrorAction Ignore
7071
Remove-Item .\out -Recurse -Force -ErrorAction Ignore
7172
}
7273

0 commit comments

Comments
 (0)