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
Also modify ssh.go to include:
config.HostKeyCallback = ssh.InsecureIgnoreHostKey()
We should review whether this is ok, or whether there's
a better callback function to use here.
Updating the vendor package solved my issue with ssh-agent
and allowed me to connect to a remote host even if I have
several keys registered with the agent.
Without this patch I have to clear my ssh-agent identity list
each time I use sup.
Fixespressly#158
This week I was writing a
Supfile
and hit this error:I was able to fix this by adding this line to
ssh.go
:But that's only available in more recent versions of the
crypto
package.Is there any objection to updating the
crypto
deps?The text was updated successfully, but these errors were encountered: