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 ffb1bae commit 1c396a5Copy full SHA for 1c396a5
src/debugAdapter/goDebug.ts
@@ -31,6 +31,7 @@ import {
31
import { DebugProtocol } from 'vscode-debugprotocol';
32
import { parseEnvFiles } from '../utils/envUtils';
33
import {
34
+ correctBinname,
35
envPath,
36
expandFilePathInOutput,
37
fixDriveCasingInWindows,
@@ -482,8 +483,7 @@ export class Delve {
482
483
if (mode === 'debug') {
484
this.noDebug = true;
485
const build = ['build'];
-
486
- const output = path.join(os.tmpdir(), 'out');
+ const output = path.join(os.tmpdir(), correctBinname('out'));
487
build.push(`-o=${output}`);
488
489
const buildOptions: { [key: string]: any } = { cwd: dirname, env };
0 commit comments