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

This commit is contained in:
Dan Brown
2025-12-26 14:33:12 -06:00
committed by Aiden Cline
parent c1fda41fad
commit 071a87177a
+2 -1
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}`],
},
}