*/
export function stripRedundantCdPrefix(
parameters: Record<string, unknown> | undefined,
workingDirectory: URI | undefined,
): boolean {
if (!workingDirectory || !parameters) {
return false;
}
const isBash = toolName === 'bash';
const isPowerShell = toolName === 'powershell';
return false;
}