Skip to content

Commit 034fa7b

Browse files
Fix debugger proxy (#822)
The previous change to the directory structure broke the debugger proxy code (but we never noticed since it isn't used much). This fixes it.
1 parent b324f85 commit 034fa7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr-debug/proxy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function serializeProtocolEvent(message: DebugProtocol.ProtocolMessage): string
3939
// This proxy will still be called and launch OpenDebugAD7 as a child process.
4040
// During subsequent code sessions, the rewritten manifest will be loaded and this proxy will no longer be called.
4141
function proxy() {
42-
let util = new CoreClrDebugUtil(path.resolve(__dirname, '../../'));
42+
let util = new CoreClrDebugUtil(path.resolve(__dirname, '../../../'));
4343

4444
if (!CoreClrDebugUtil.existsSync(util.installCompleteFilePath())) {
4545
if (CoreClrDebugUtil.existsSync(util.installBeginFilePath())) {

0 commit comments

Comments
 (0)