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 f41f975 commit e723058Copy full SHA for e723058
src/integrations/terminal/TerminalRegistry.ts
@@ -53,7 +53,7 @@ export class TerminalRegistry {
53
const terminal = this.getTerminalByVSCETerminal(e.terminal)
54
55
console.info("[onDidStartTerminalShellExecution]", {
56
- command: e.execution.commandLine.value,
+ command: e.execution?.commandLine?.value,
57
terminalId: terminal?.id,
58
})
59
@@ -79,7 +79,7 @@ export class TerminalRegistry {
79
const exitDetails = TerminalProcess.interpretExitCode(e.exitCode)
80
81
console.info("[onDidEndTerminalShellExecution]", {
82
83
84
...exitDetails,
85
0 commit comments