From dc6dc8374299203c3070de02c137108913e412e6 Mon Sep 17 00:00:00 2001 From: Dibir Magomedsaygitov <61747324+dibir-magomedsaygitov@users.noreply.github.com> Date: Tue, 11 May 2021 10:15:27 +0300 Subject: [PATCH] fix minikube version output (#3352) --- images/linux/scripts/SoftwareReport/SoftwareReport.Tools.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/SoftwareReport/SoftwareReport.Tools.psm1 b/images/linux/scripts/SoftwareReport/SoftwareReport.Tools.psm1 index 66964a99fb2e..eb64d6850049 100644 --- a/images/linux/scripts/SoftwareReport/SoftwareReport.Tools.psm1 +++ b/images/linux/scripts/SoftwareReport/SoftwareReport.Tools.psm1 @@ -135,7 +135,7 @@ function Get-KubectlVersion { } function Get-MinikubeVersion { - $minikubeVersion = minikube version --short | Take-OutputPart -Part 2 | Take-OutputPart -Part 0 -Delimiter "v" + $minikubeVersion = minikube version --short | Take-OutputPart -Part 0 -Delimiter "v" return "Minikube $minikubeVersion" }