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 73fd0d9 commit e95bcb1Copy full SHA for e95bcb1
eng/scripts/docs/Docs-ToC.ps1
@@ -13,8 +13,8 @@ function Get-WhlFile {
13
$pipCommandArgs += "$Library==$Version"
14
15
# download the whl file
16
- Write-Host "pip download --quiet --only-binary :all: --dest $Destination --no-cache --no-deps $pipCommandArgs"
17
- pip download --quiet --only-binary :all: --dest $Destination --no-cache --no-deps $pipCommandArgs
+ Write-Host "python -m pip download --quiet --only-binary=:all: --dest $Destination --no-deps $pipCommandArgs"
+ python -m pip download --quiet --only-binary=:all: --dest $Destination --no-deps $pipCommandArgs
18
if($LASTEXITCODE -ne 0) {
19
return $false
20
}
0 commit comments