Merge pull request #10213 from chrisroberts/vagrant-driv-stderr

Return error if ssh-config command fails
pull/10220/head
Megan Marsh 5 years ago committed by GitHub
commit 23552bfbd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -154,8 +154,10 @@ func (d *Vagrant_2_2_Driver) SSHConfig(id string) (*VagrantSSHConfig, error) {
sshConf := &VagrantSSHConfig{}
stdout, stderr, err := d.vagrantCmd(args...)
if stderr != "" {
err := fmt.Errorf("ssh-config command returned error: %s", stderr)
if err != nil {
if stderr != "" {
err = fmt.Errorf("ssh-config command returned errors: %s", stderr)
}
return sshConf, err
}
lines := strings.Split(stdout, "\n")

Loading…
Cancel
Save