From bffe00f9315dd09cbc8f7fa73f20655d6c1fd3ad Mon Sep 17 00:00:00 2001 From: Richard Frank Date: Thu, 21 Apr 2016 10:30:48 -0400 Subject: [PATCH] BLD: Print the download failure reason --- ci/appveyor/install.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/appveyor/install.ps1 b/ci/appveyor/install.ps1 index eb75be14..3d251068 100644 --- a/ci/appveyor/install.ps1 +++ b/ci/appveyor/install.ps1 @@ -30,6 +30,8 @@ function DownloadMiniconda ($python_version, $platform_suffix) { break } Catch [Exception]{ + Write-Host "Exception downloading" $filename ":" $_.Exception.ToString() + Write-Host "Retrying in 1 second." Start-Sleep 1 } }