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

Lines changed: 0 additions & 12 deletions
This file was deleted.

scripts/Start-EditorServices.ps1

Lines changed: 0 additions & 347 deletions
This file was deleted.

src/process.ts

Lines changed: 3 additions & 1 deletion
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)