Skip to content

Commit deec351

Browse files
committed
Fix path
1 parent 19f6249 commit deec351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/settings.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export function load(): ISettings {
8989
const defaultDeveloperSettings: IDeveloperSettings = {
9090
featureFlags: [],
9191
powerShellExePath: undefined,
92-
bundledModulesPath: "../../../PowerShellEditorServices/module/",
92+
bundledModulesPath: "../../../PowerShellEditorServices/module",
9393
editorServicesLogLevel: "Normal",
9494
editorServicesWaitForDebugger: false,
9595
powerShellExeIsWindowsDevBuild: false,
@@ -119,7 +119,7 @@ export function load(): ISettings {
119119
powerShellExePath:
120120
configuration.get<string>("powerShellExePath", undefined),
121121
bundledModulesPath:
122-
"../modules/",
122+
"../../modules",
123123
useX86Host:
124124
configuration.get<boolean>("useX86Host", false),
125125
enableProfileLoading:

0 commit comments

Comments
 (0)