Skip to content

Commit ec341ed

Browse files
committed
Merge branch 'change-startpses-path'
2 parents 2c7d6f7 + deec351 commit ec341ed

File tree

6 files changed

+37
-397
lines changed

6 files changed

+37
-397
lines changed

modules.json

-12
This file was deleted.

scripts/Start-EditorServices.ps1

-347
This file was deleted.

src/process.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class PowerShellProcess {
2323

2424
constructor(
2525
public exePath: string,
26+
private bundledModulesPath: string,
2627
private title: string,
2728
private log: Logger,
2829
private startArgs: string,
@@ -40,7 +41,8 @@ export class PowerShellProcess {
4041
const startScriptPath =
4142
path.resolve(
4243
__dirname,
43-
"../../scripts/Start-EditorServices.ps1");
44+
this.bundledModulesPath,
45+
"PowerShellEditorServices/Start-EditorServices.ps1");
4446

4547
const editorServicesLogPath = this.log.getLogFilePath(logFileName);
4648

0 commit comments

Comments
 (0)