From b234300bd872268bd4edad093213287a0c5375ed Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Mon, 31 Jan 2022 22:19:39 +0100 Subject: [PATCH] gpg4win support maybe? --- tabby-ssh/src/session/ssh.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tabby-ssh/src/session/ssh.ts b/tabby-ssh/src/session/ssh.ts index b9cbe050..189254de 100644 --- a/tabby-ssh/src/session/ssh.ts +++ b/tabby-ssh/src/session/ssh.ts @@ -125,7 +125,10 @@ export class SSHSession { if (await fs.exists(WINDOWS_OPENSSH_AGENT_PIPE)) { this.agentPath = WINDOWS_OPENSSH_AGENT_PIPE } else { - if (await this.platform.isProcessRunning('pageant.exe')) { + if ( + await this.platform.isProcessRunning('pageant.exe') || + await this.platform.isProcessRunning('gpg-agent.exe') + ) { this.agentPath = 'pageant' } }