vendor: Update hyperkit to latest version

Signed-off-by: Magnus Skjegstad <magnus@skjegstad.com>
This commit is contained in:
Magnus Skjegstad
2017-05-29 12:51:48 +02:00
parent 7b9356c320
commit 6c3dfea808
2 changed files with 4 additions and 1 deletions

View File

@@ -553,6 +553,9 @@ func checkVPNKitSock(vpnkitsock string) (string, error) {
if vpnkitsock == "auto" {
vpnkitsock = filepath.Join(getHome(), defaultVPNKitSock)
}
if vpnkitsock == "" {
return "", nil
}
vpnkitsock = filepath.Clean(vpnkitsock)
_, err := os.Stat(vpnkitsock)