Skip to content

Commit

Permalink
Fix debugger proxy (#822)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
gregg-miskelly authored Oct 18, 2016
1 parent b324f85 commit 034fa7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr-debug/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function serializeProtocolEvent(message: DebugProtocol.ProtocolMessage): string
// This proxy will still be called and launch OpenDebugAD7 as a child process.
// During subsequent code sessions, the rewritten manifest will be loaded and this proxy will no longer be called.
function proxy() {
let util = new CoreClrDebugUtil(path.resolve(__dirname, '../../'));
let util = new CoreClrDebugUtil(path.resolve(__dirname, '../../../'));

if (!CoreClrDebugUtil.existsSync(util.installCompleteFilePath())) {
if (CoreClrDebugUtil.existsSync(util.installBeginFilePath())) {
Expand Down

0 comments on commit 034fa7b

Please sign in to comment.