remove unreachable code

This commit is contained in:
Andre Weinand 2019-10-23 17:28:14 +02:00
parent ad7b31d3e7
commit 02be96f5e0

View file

@ -90,8 +90,6 @@ export function prepareCommand(args: DebugProtocol.RunInTerminalRequestArguments
shellType = ShellType.cmd;
} else if (shell.indexOf('bash') >= 0) {
shellType = ShellType.bash;
} else if (shell.indexOf('git\\bin\\bash.exe') >= 0) {
shellType = ShellType.bash;
}
let quote: (s: string) => string;