mirror of
https://github.com/Eugeny/tabby
synced 2024-12-13 06:42:44 +00:00
gpg4win support maybe?
This commit is contained in:
parent
be3bae3a6f
commit
b234300bd8
1 changed files with 4 additions and 1 deletions
|
@ -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'
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue