Repository: reef
Updated Branches:
  refs/heads/master 57e9f4db7 -> e227f8d7e


[REEF-1571] Switch to AppVeyor DownloadFile command

This change switches from Start-FileDownload cmdlet
to AppVeyor DownloadFile command in our AppVeyor install
dependencies script.

JIRA:
  [REEF-1571](https://issues.apache.org/jira/browse/REEF-1571)

Pull request:
  This closes #1128


Project: http://git-wip-us.apache.org/repos/asf/reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/e227f8d7
Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/e227f8d7
Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/e227f8d7

Branch: refs/heads/master
Commit: e227f8d7eedb664e3c1d0bef9c003ecb17b46dfd
Parents: 57e9f4d
Author: Mariia Mykhailova <mar...@apache.org>
Authored: Wed Sep 21 12:56:33 2016 -0700
Committer: Markus Weimer <wei...@apache.org>
Committed: Thu Sep 22 17:30:27 2016 -0700

----------------------------------------------------------------------
 dev/appveyor-install-dependencies.ps1 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/reef/blob/e227f8d7/dev/appveyor-install-dependencies.ps1
----------------------------------------------------------------------
diff --git a/dev/appveyor-install-dependencies.ps1 
b/dev/appveyor-install-dependencies.ps1
index 27dbadb..00c0454 100644
--- a/dev/appveyor-install-dependencies.ps1
+++ b/dev/appveyor-install-dependencies.ps1
@@ -29,7 +29,7 @@ if (!(Test-Path $tools))
 Push-Location $tools
 
 $mavenVer = "3.3.3"
-Start-FileDownload 
"https://archive.apache.org/dist/maven/maven-3/$mavenVer/binaries/apache-maven-$mavenVer-bin.zip";
 "maven.zip"
+appveyor DownloadFile 
"https://archive.apache.org/dist/maven/maven-3/$mavenVer/binaries/apache-maven-$mavenVer-bin.zip";
 -FileName "maven.zip"
 
 # extract
 Invoke-Expression "7z.exe x maven.zip" | Out-Null
@@ -49,7 +49,7 @@ if (!(Test-Path $protocPath))
 }
 Push-Location $protocPath
 
-Start-FileDownload 
"https://github.com/google/protobuf/releases/download/v$protocVer/protoc-$protocVer-win32.zip";
 "protoc.zip"
+appveyor DownloadFile 
"https://github.com/google/protobuf/releases/download/v$protocVer/protoc-$protocVer-win32.zip";
 -FileName "protoc.zip"
 
 # extract
 Invoke-Expression "7z.exe x protoc.zip" | Out-Null

Reply via email to