-nologo for powershell (fixes #452)

This commit is contained in:
Eugene Pankov 2018-10-08 12:20:28 -07:00
parent 5a5cd09832
commit 73eb8bdbe7
2 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,7 @@ export class PowerShellCoreShellProvider extends ShellProvider {
id: 'powershell-core', id: 'powershell-core',
name: 'PowerShell Core', name: 'PowerShell Core',
command: pwshPath, command: pwshPath,
args: ['-nologo'],
env: { env: {
TERM: 'cygwin', TERM: 'cygwin',
} }

View File

@ -39,6 +39,7 @@ export class WindowsStockShellsProvider extends ShellProvider {
id: 'powershell', id: 'powershell',
name: 'PowerShell', name: 'PowerShell',
command: 'powershell.exe', command: 'powershell.exe',
args: ['-nologo'],
env: { env: {
TERM: 'cygwin', TERM: 'cygwin',
} }