From 4ae84bc434f22e4470bb6773460c193599f4258c Mon Sep 17 00:00:00 2001 From: Kishore Kumar Reddy Anchala Date: Tue, 18 Feb 2025 15:07:55 +0530 Subject: [PATCH] Convert signatureThumbprint variable into an array --- images/windows/scripts/build/Install-EdgeDriver.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/images/windows/scripts/build/Install-EdgeDriver.ps1 b/images/windows/scripts/build/Install-EdgeDriver.ps1 index e8f07b7de1..8644e11137 100644 --- a/images/windows/scripts/build/Install-EdgeDriver.ps1 +++ b/images/windows/scripts/build/Install-EdgeDriver.ps1 @@ -27,7 +27,10 @@ Write-Host "Expand Microsoft Edge WebDriver archive..." Expand-7ZipArchive -Path $archivePath -DestinationPath $edgeDriverPath #Validate the EdgeDriver signature -$signatureThumbprint = "7920AC8FB05E0FFFE21E8FF4B4F03093BA6AC16E" +$signatureThumbprint = @( + "7920AC8FB05E0FFFE21E8FF4B4F03093BA6AC16E", + "0BD8C56733FDCC06F8CB919FF5A200E39B1ACF71" + ) Test-FileSignature -Path "$edgeDriverPath\msedgedriver.exe" -ExpectedThumbprint $signatureThumbprint Write-Host "Setting the environment variables..."