From 7a7ae59433ce72069d46aa2622e3d016f91b6694 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Tue, 19 Apr 2022 13:36:21 -0700 Subject: [PATCH] more hyper-v libmachine changes --- go.mod | 2 +- go.sum | 4 ++-- pkg/minikube/reason/reason.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 91cb32721b..adedd9bebd 100644 --- a/go.mod +++ b/go.mod @@ -215,7 +215,7 @@ require ( replace ( git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999 github.com/briandowns/spinner => github.com/alonyb/spinner v1.12.7 - github.com/docker/machine => github.com/sharifelgamal/machine v0.0.0-20220418234717-0d7042c679c5 + github.com/docker/machine => github.com/sharifelgamal/machine v0.0.0-20220419202400-e2ce4b7254c7 github.com/samalba/dockerclient => github.com/sayboras/dockerclient v1.0.0 k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.22.4 ) diff --git a/go.sum b/go.sum index 3f9c4e7445..397805cf9f 100644 --- a/go.sum +++ b/go.sum @@ -1030,8 +1030,8 @@ github.com/sayboras/dockerclient v1.0.0/go.mod h1:mUmEoqt0b+uQg57s006FsvL4mybi+N github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= -github.com/sharifelgamal/machine v0.0.0-20220418234717-0d7042c679c5 h1:5sO0/oWpr+1XG+lTGXe31O75pZrAcsgJ+unywPEXqxo= -github.com/sharifelgamal/machine v0.0.0-20220418234717-0d7042c679c5/go.mod h1:EWIijAq2ANG8a9Dth8yuV3xzDy+gOa4p2c9i/nYEgDI= +github.com/sharifelgamal/machine v0.0.0-20220419202400-e2ce4b7254c7 h1:Xd0f99vf3R6A8tXWqQSy5TZh5GzYydYQGDB9sadvlAA= +github.com/sharifelgamal/machine v0.0.0-20220419202400-e2ce4b7254c7/go.mod h1:EWIijAq2ANG8a9Dth8yuV3xzDy+gOa4p2c9i/nYEgDI= github.com/shirou/gopsutil/v3 v3.22.3 h1:UebRzEomgMpv61e3hgD1tGooqX5trFbdU/ehphbHd00= github.com/shirou/gopsutil/v3 v3.22.3/go.mod h1:D01hZJ4pVHPpCTZ3m3T2+wDF2YAGfd+H4ifUguaQzHM= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= diff --git a/pkg/minikube/reason/reason.go b/pkg/minikube/reason/reason.go index b2fece0172..1b10ae3b60 100644 --- a/pkg/minikube/reason/reason.go +++ b/pkg/minikube/reason/reason.go @@ -95,7 +95,7 @@ var ( InternalConfigUnset = Kind{ID: "MK_CONFIG_UNSET", ExitCode: ExProgramError} // minikube failed to view current config values InternalConfigView = Kind{ID: "MK_CONFIG_VIEW", ExitCode: ExProgramError} - // minikybe failed to delete an internal configuration, such as a cached image + // minikube failed to delete an internal configuration, such as a cached image InternalDelConfig = Kind{ID: "MK_DEL_CONFIG", ExitCode: ExProgramError} // minikube failed to generate script to activate minikube docker-env InternalDockerScript = Kind{ID: "MK_DOCKER_SCRIPT", ExitCode: ExProgramError}