1
1
mirror of https://github.com/Eugeny/tabby.git synced 2025-01-02 23:45:45 +03:00

fixed cygwin $PATH (fixes #1683, fixes #1570)

This commit is contained in:
Eugene Pankov 2020-01-16 17:45:32 +01:00
parent 964e0ad2bc
commit de3829a94c
2 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,7 @@ export class Cygwin32ShellProvider extends ShellProvider {
id: 'cygwin32',
name: 'Cygwin (32 bit)',
command: path.join(cygwinPath, 'bin', 'bash.exe'),
args: ['--login', '-i'],
icon: require('../icons/cygwin.svg'),
env: {
TERM: 'cygwin',

View File

@ -35,6 +35,7 @@ export class Cygwin64ShellProvider extends ShellProvider {
id: 'cygwin64',
name: 'Cygwin',
command: path.join(cygwinPath, 'bin', 'bash.exe'),
args: ['--login', '-i'],
icon: require('../icons/cygwin.svg'),
env: {
TERM: 'cygwin',