We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c54ca commit 375e9a1Copy full SHA for 375e9a1
images/win/scripts/Installers/Install-PyPy.ps1
@@ -112,6 +112,11 @@ foreach($toolsetVersion in $toolsetVersions.versions)
112
$distributorFileHash = $node.InnerText.ToString().Split("`n").Where({ $_ -ilike "*${filename}*" }).Split(' ')[0]
113
}
114
115
+
116
+ #Temp patch for pypy3.9-v7.3.13-win64.zip checksum, delete me when pypy.org will be fixed
117
+ if ($filename -ilike "*pypy3.9-v7.3.13-win64*") {
118
+ $distributorFileHash = "09EA41154AD1DCD3E8378609A73196A6C108B17AA05EF3CBB240610744102803"
119
+ }
120
121
Use-ChecksumComparison -LocalFileHash $localFileHash -DistributorFileHash $distributorFileHash
122
#endregion
0 commit comments