Skip to content

Commit

Permalink
fix(maven): change maven link
Browse files Browse the repository at this point in the history
AppVeyor CI used a broken link of maven. We updated it
with the correct one.

Ref: yegor256#1111
  • Loading branch information
baudoliver7 committed Dec 17, 2021
1 parent 72f09dd commit 993528c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip', 'C:\maven-bin.zip')
(new-object System.Net.WebClient).DownloadFile('https://dlcdn.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip', 'C:\maven-bin.zip')
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH:C:\Ruby193\bin;=%
Expand Down

0 comments on commit 993528c

Please sign in to comment.