Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vs/workbench/api/node/extHostDebugService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase {
}
}

const command = prepareCommand(shell, args.args, cwdForPrepareCommand, args.env);
const command = prepareCommand(shell, args.args, !!args.argsCanBeInterpretedByShell, cwdForPrepareCommand, args.env);
terminal.sendText(command);

// Mark terminal as unused when its session ends, see #112055
Expand Down
3 changes: 2 additions & 1 deletion src/vs/workbench/contrib/debug/browser/debugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,8 @@ export class DebugSession implements IDebugSession {
locale: platform.locale,
supportsProgressReporting: true, // #92253
supportsInvalidatedEvent: true, // #106745
supportsMemoryReferences: true //#129684
supportsMemoryReferences: true, //#129684
supportsArgsCanBeInterpretedByShell: true // #149910
});

this.initialized = true;
Expand Down
Loading