diff --git a/pkg/minikube/cluster/cluster.go b/pkg/minikube/cluster/cluster.go index dfaab0a2105a..acb55978bec1 100644 --- a/pkg/minikube/cluster/cluster.go +++ b/pkg/minikube/cluster/cluster.go @@ -403,7 +403,7 @@ func GetMountCleanupCommand(path string) string { var mountTemplate = ` sudo mkdir -p {{.Path}} || true; sudo mount -t 9p -o trans=tcp,port={{.Port}},dfltuid={{.UID}},dfltgid={{.GID}},version={{.Version}},msize={{.Msize}} {{.IP}} {{.Path}}; -sudo chmod 775 {{.Path}};` +sudo chmod 775 {{.Path}} || true;` func GetMountCommand(ip net.IP, path, port, mountVersion string, uid, gid, msize int) (string, error) { t := template.Must(template.New("mountCommand").Parse(mountTemplate))