Skip to content

Commit

Permalink
properly fix #119346
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Mar 19, 2021
1 parent d6a713e commit 3a5f417
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/vs/workbench/contrib/terminal/node/terminalProfiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,17 @@ async function detectAvailableWindowsProfiles(quickLaunchOnly: boolean, logServi
profileName: 'Command Prompt',
paths: [`${system32Path}\\cmd.exe`]
},
{
profileName: 'Git Bash',
paths: [
`${process.env['ProgramFiles']}\\Git\\git-cmd.exe`
],
args: [
'--comand=usr/bin/bash.exe',
'-l',
'-i'
]
},
{
profileName: 'Git Bash',
paths: [
Expand Down

0 comments on commit 3a5f417

Please sign in to comment.