Skip to content

Commit 1322a78

Browse files
Convert signatureThumbprint variable into an array (#11647)
1 parent 434680b commit 1322a78

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

images/windows/scripts/build/Install-EdgeDriver.ps1

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ Write-Host "Expand Microsoft Edge WebDriver archive..."
2727
Expand-7ZipArchive -Path $archivePath -DestinationPath $edgeDriverPath
2828

2929
#Validate the EdgeDriver signature
30-
$signatureThumbprint = "7920AC8FB05E0FFFE21E8FF4B4F03093BA6AC16E"
30+
$signatureThumbprint = @(
31+
"7920AC8FB05E0FFFE21E8FF4B4F03093BA6AC16E",
32+
"0BD8C56733FDCC06F8CB919FF5A200E39B1ACF71"
33+
)
3134
Test-FileSignature -Path "$edgeDriverPath\msedgedriver.exe" -ExpectedThumbprint $signatureThumbprint
3235

3336
Write-Host "Setting the environment variables..."

0 commit comments

Comments
 (0)