Shell: No -l in fallback, for max compatibility (#5452)

thinking-toggle-wip
Dan Brown 2025-12-12 14:43:35 -07:00 committed by Aiden Cline
parent c1fda41fad
commit 071a87177a
1 changed files with 2 additions and 1 deletions

View File

@ -1284,8 +1284,9 @@ export namespace SessionPrompt {
args: ["-NoProfile", "-Command", input.command],
},
// Fallback: any shell that doesn't match those above
// - No -l, for max compatibility
"": {
args: ["-c", "-l", `${input.command}`],
args: ["-c", `${input.command}`],
},
}