From 2821100161f958c663ae5ed9bcead5851ac9cc1b Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Thu, 25 Apr 2019 10:46:29 -0700 Subject: [PATCH] missing comma --- pkg/minikube/problem/err_map.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/minikube/problem/err_map.go b/pkg/minikube/problem/err_map.go index 30d819d7f79b..a595a93009f2 100644 --- a/pkg/minikube/problem/err_map.go +++ b/pkg/minikube/problem/err_map.go @@ -37,10 +37,10 @@ var vmProblems = map[string]match{ Issues: []int{3900}, }, "VBOX_THIRD_PARTY": { - Regexp: re(`The virtual machine 'minikube' has terminated unexpectedly during startup with exit code 1`), + Regexp: re(`The virtual machine * has terminated unexpectedly during startup with exit code 1`), Advice: "A third-party program may be interfering with VirtualBox. Try disabling any real-time antivirus software, reinstalling VirtualBox and rebooting.", Issues: []int{3910}, - } + }, "KVM2_NOT_FOUND": { Regexp: re(`Driver "kvm2" not found. Do you have the plugin binary .* accessible in your PATH`), Advice: "Please install the minikube kvm2 VM driver, or select an alternative --vm-driver",