Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions modules.json

This file was deleted.

353 changes: 0 additions & 353 deletions scripts/Start-EditorServices.ps1

This file was deleted.

4 changes: 3 additions & 1 deletion src/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export class PowerShellProcess {

constructor(
public exePath: string,
private bundledModulesPath: string,
private title: string,
private log: Logger,
private startArgs: string,
Expand All @@ -40,7 +41,8 @@ export class PowerShellProcess {
const startScriptPath =
path.resolve(
__dirname,
"../../scripts/Start-EditorServices.ps1");
this.bundledModulesPath,
"PowerShellEditorServices/Start-EditorServices.ps1");

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

Expand Down
Loading