6 lines
257 B
TypeScript
6 lines
257 B
TypeScript
export function buildFreshShellProbeInputSequence(command: string): readonly string[] {
|
|
// Why: Windows ConPTY can echo a startup Ctrl+C as literal "^C", which
|
|
// corrupts the following PowerShell command before the shell is ready.
|
|
return [command]
|
|
}
|