From 92993db1226969b978062700f1240f230a93032b Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Tue, 21 Nov 2017 22:16:59 +0100 Subject: [PATCH] fixed #234 --- terminus-terminal/src/shells/windowsStock.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/terminus-terminal/src/shells/windowsStock.ts b/terminus-terminal/src/shells/windowsStock.ts index dd57339d..cb81d60b 100644 --- a/terminus-terminal/src/shells/windowsStock.ts +++ b/terminus-terminal/src/shells/windowsStock.ts @@ -34,7 +34,14 @@ export class WindowsStockShellsProvider extends ShellProvider { ] }, { id: 'cmd', name: 'CMD (stock)', command: 'cmd.exe' }, - { id: 'powershell', name: 'PowerShell', command: 'powershell.exe' }, + { + id: 'powershell', + name: 'PowerShell', + command: 'powershell.exe', + env: { + TERM: 'cygwin', + } + }, ] } }