Skip to content

Commit

Permalink
Remove downloaded miniconda after installation in appveyor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Paulik committed Jul 14, 2017
1 parent 0d73e24 commit 0528585
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions appveyor/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ function InstallMiniconda ($miniconda_version, $architecture, $python_home) {
#Start-Sleep -s 15
if (Test-Path $python_home) {
Write-Host "Miniconda $miniconda_version ($architecture) installation complete"
If (Test-Path $filepath){
Remove-Item $filepath
}
} else {
Write-Host "Failed to install Python in $python_home"
Exit 1
Expand Down

0 comments on commit 0528585

Please sign in to comment.