Commit 8ac03e48 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/vmware: compile host_ip on every platform

parent 1286f735
// +build darwin freebsd linux netbsd openbsd
package vmware
// Interface to help find the host IP that is available from within
......
......@@ -57,7 +57,9 @@ func (*VMnetNatConfIPFinder) HostIP() (string, error) {
break
}
return "", err
if err != nil {
return "", err
}
}
return "", errors.New("host IP not found in NAT config")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment