Fixed SHA256 for Cygwin

This commit is contained in:
Alexey Pustovalov 2022-01-28 15:09:41 +05:00
parent 9b3826910e
commit 1b4a8dafe3

View File

@ -200,7 +200,7 @@ RUN Set-Location -Path $env:SystemDrive\.; `
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; `
(New-Object Net.WebClient).DownloadFile("""$env:CYGWIN_URL""", """$env:SystemDrive\setup.exe"""); `
`
$sha256 = '2d65b46e884d9556bd4d17b5ce174b93ef307326395796895892e897adaf72ad'; `
$sha256 = '98fac3ee56a183f8c45abc1e80395c48f075e338708d27a64eee8c942fd2baa9'; `
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
if ((Get-FileHash $env:SystemDrive\setup.exe -Algorithm sha256).Hash -ne $sha256) { `
Write-Host 'Checksum Cygwin failed!'; `