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 3f2b0e2 commit 9f3cf00Copy full SHA for 9f3cf00
images/windows/scripts/build/Install-Miniconda.ps1
@@ -9,7 +9,7 @@ $installerName = "Miniconda3-latest-Windows-x86_64.exe"
9
10
#region Supply chain security
11
$distributorFileHash = $null
12
-$checksums = (Invoke-RestMethod -Uri 'https://repo.anaconda.com/miniconda/' | ConvertFrom-HTML).SelectNodes('//html/body/table/tr')
+$checksums = (ConvertFrom-HTML -Uri 'https://repo.anaconda.com/miniconda/').SelectNodes('//html/body/table/tr')
13
14
foreach ($node in $checksums) {
15
if ($node.ChildNodes[1].InnerText -eq $installerName) {
0 commit comments