You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (serverInfo.ssh.useAgent) {
if (!process.env.SSH_AUTH_SOCK) {
throw new Error('not set SSH_AUTH_SOCK env variable');
}
config.agent = process.env.SSH_AUTH_SOCK;
}
The text was updated successfully, but these errors were encountered:
Noticed that a method to use an ssh agent was added. But not a way to define what agent is being used, i.e.
pageant
.Currently, #27 added a
config.agent
but is forced to useprocess.env.SSH_AUTH_SOCK
.As mentioned in #15, supposedly I can use
pageant
on Windows. But there is no way to set what agent I can use, at least from what I've seen.src/tunnel.ts
The text was updated successfully, but these errors were encountered: