Home | History | Annotate | Download | only in ci

Lines Matching full:filepath

28     $filepath = $basedir + $filename
30 Write-Host "Reusing" $filepath
31 return $filepath
39 $webclient.DownloadFile($url, $filepath)
46 if (Test-Path $filepath) {
47 Write-Host "File saved at" $filepath
50 $webclient.DownloadFile($url, $filepath)
52 return $filepath
102 $filepath = Download $filename $url
103 return $filepath
156 Start-Process -FilePath $command -ArgumentList $command_args -Wait -Passthru
182 $filepath = Download $filename $url
183 return $filepath
198 $filepath = DownloadMiniconda $python_version $platform_suffix
199 Write-Host "Installing" $filepath "to" $python_home
202 Write-Host $filepath $args
203 Start-Process -FilePath $filepath -ArgumentList $args -Wait -Passthru
221 Start-Process -FilePath "$conda_path" -ArgumentList $args -Wait -Passthru