From 746cfcca9acb6283df5878c5138f873290a95334 Mon Sep 17 00:00:00 2001 From: mikhailshaganov <81769678+mikhailshaganov@users.noreply.github.com> Date: Mon, 13 Sep 2021 18:42:19 +0300 Subject: [PATCH] [Windows] Fix ndk output version (#4058) --- images/win/scripts/SoftwareReport/SoftwareReport.Android.psm1 | 1 + 1 file changed, 1 insertion(+) diff --git a/images/win/scripts/SoftwareReport/SoftwareReport.Android.psm1 b/images/win/scripts/SoftwareReport/SoftwareReport.Android.psm1 index 08db5030..0c034b6f 100644 --- a/images/win/scripts/SoftwareReport/SoftwareReport.Android.psm1 +++ b/images/win/scripts/SoftwareReport/SoftwareReport.Android.psm1 @@ -22,6 +22,7 @@ function Get-AndroidSDKManagerPath { function Get-AndroidInstalledPackages { $androidSDKManagerPath = Get-AndroidSDKManagerPath $androidSDKManagerList = cmd /c "$androidSDKManagerPath --list_installed 2>&1" + $androidSDKManagerList = $androidSDKManagerList -notmatch "Warning" return $androidSDKManagerList }