We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef7d01 commit 981cf65Copy full SHA for 981cf65
src/coreclr-debug/util.ts
@@ -84,7 +84,7 @@ export class CoreClrDebugUtil
84
{
85
let dotnetInfo = new DotnetInfo();
86
87
- return this.spawnChildProcess('dotnet', ['--info'], this.debugAdapterDir(), (data: Buffer) => {
+ return this.spawnChildProcess('dotnet', ['--info'], process.cwd(), (data: Buffer) => {
88
let lines: string[] = data.toString().replace(/\r/mg, '').split('\n');
89
lines.forEach(line => {
90
let match: RegExpMatchArray;
0 commit comments