mirror of
https://github.com/Eugeny/tabby
synced 2025-01-05 17:59:02 +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)) {
|
if (await fs.exists(WINDOWS_OPENSSH_AGENT_PIPE)) {
|
||||||
this.agentPath = WINDOWS_OPENSSH_AGENT_PIPE
|
this.agentPath = WINDOWS_OPENSSH_AGENT_PIPE
|
||||||
} else {
|
} 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'
|
this.agentPath = 'pageant'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue