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
I recently noticed that ssh_config.Get() function does not remove leading and trailing double quotes from string. Eventually it leads to strange error:
open "/Users/furkan/bar/_config/user": no such file or directory
But this config does exist actually. Function should do something like strings.Trim(s, "\"") just before return.
I recently noticed that
ssh_config.Get()
function does not remove leading and trailing double quotes from string. Eventually it leads to strange error:But this config does exist actually. Function should do something like
strings.Trim(s, "\"")
just before return.Here is a minimal reproducible example:
The text was updated successfully, but these errors were encountered: