mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: wrong path to find iTerm2
This commit is contained in:
parent
c1c1e1f0c8
commit
66b28621d1
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ namespace SourceGit.Native
|
|||
|
||||
public MacOS()
|
||||
{
|
||||
_terminal = Directory.Exists("/Applications/iTerm2.app") ? TerminalType.iTerm2 : TerminalType.Terminal;
|
||||
_terminal = Directory.Exists("/Applications/iTerm.app") ? TerminalType.iTerm2 : TerminalType.Terminal;
|
||||
}
|
||||
|
||||
public void SetupApp(AppBuilder builder)
|
||||
|
|
Loading…
Reference in a new issue