From 4184359f216e4126ec054a84047c6451bad406c9 Mon Sep 17 00:00:00 2001 From: Paul Broadwith Date: Sat, 13 Jul 2024 18:07:36 +0100 Subject: [PATCH] fix(adobereader: typo [skip ci] --- automatic/adobereader/tools/chocolateyinstall.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automatic/adobereader/tools/chocolateyinstall.ps1 b/automatic/adobereader/tools/chocolateyinstall.ps1 index a2fe2956..0bd8d075 100644 --- a/automatic/adobereader/tools/chocolateyinstall.ps1 +++ b/automatic/adobereader/tools/chocolateyinstall.ps1 @@ -43,10 +43,10 @@ if ($PackageParameters['IgnoreInstalled']) { for ($j = 0; $j -lt $matchInstallation.count; $j++) { if ($installation[$i].DisplayName -notlike $matchInstallation[$j]) { $installation[$i] - Write-Verbose "Keeping '$($installation[$i].DisplayName)' as it does not match '$($matchInstallation[$j]))'" + Write-Verbose "Keeping '$($installation[$i].DisplayName)' as it does not match '$($matchInstallation[$j])'" } else { - Write-Verbose "Removing '$($installation[$i].DisplayName)' from list of found software, as it matches '$($matchInstallation[$j]))'" + Write-Verbose "Removing '$($installation[$i].DisplayName)' from list of found software, as it matches '$($matchInstallation[$j])'" } } }