From 1b5e9f95d067f13320fa284f75ec6fad633c8203 Mon Sep 17 00:00:00 2001 From: Alexey-Ayupov <116575425+Alexey-Ayupov@users.noreply.github.com> Date: Thu, 1 Jun 2023 21:14:51 +0200 Subject: [PATCH] [Windows] fix software report for innosetup (#7658) --- images/win/scripts/SoftwareReport/SoftwareReport.Tools.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/win/scripts/SoftwareReport/SoftwareReport.Tools.psm1 b/images/win/scripts/SoftwareReport/SoftwareReport.Tools.psm1 index ebe898c3..543c7553 100644 --- a/images/win/scripts/SoftwareReport/SoftwareReport.Tools.psm1 +++ b/images/win/scripts/SoftwareReport/SoftwareReport.Tools.psm1 @@ -87,7 +87,7 @@ function Get-GitLFSVersion { } function Get-InnoSetupVersion { - $innoSetupVersion = $(choco list --local-only innosetup) | Select-String -Pattern "InnoSetup" + $innoSetupVersion = $(choco list innosetup) | Select-String -Pattern "InnoSetup" return ($innoSetupVersion -replace "^InnoSetup").Trim() }