From c7f3ba9d41769439e6dc91853636884088749d05 Mon Sep 17 00:00:00 2001 From: w0rp Date: Wed, 13 Aug 2025 12:21:22 +0100 Subject: [PATCH] Take Vim binaries from ALE release assets --- .appveyor.yml | 4 ++-- doc/ale-development.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index e602b4f0..0befa104 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -41,10 +41,10 @@ install: - ps: >- if (!(Test-Path -Path C:\vim)){ Add-Type -A System.IO.Compression.FileSystem - Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586w32.zip ` + Invoke-WebRequest https://github.com/dense-analysis/ale/releases/download/v4.0.0/vim80-586w32.zip ` -OutFile C:\vim.zip [IO.Compression.ZipFile]::ExtractToDirectory('C:\vim.zip', 'C:\vim') - Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586rt.zip ` + Invoke-WebRequest https://github.com/dense-analysis/ale/releases/download/v4.0.0/vim80-586rt.zip ` -OutFile C:\rt.zip [IO.Compression.ZipFile]::ExtractToDirectory('C:\rt.zip', 'C:\vim') } diff --git a/doc/ale-development.txt b/doc/ale-development.txt index ea36a453..c14da3ba 100644 --- a/doc/ale-development.txt +++ b/doc/ale-development.txt @@ -424,11 +424,11 @@ running tests. > Add-Type -A System.IO.Compression.FileSystem - Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586w32.zip -OutFile C:\vim.zip + Invoke-WebRequest https://github.com/dense-analysis/ale/releases/download/v4.0.0/vim80-586w32.zip -OutFile C:\vim.zip [IO.Compression.ZipFile]::ExtractToDirectory('C:\vim.zip', 'C:\vim') rm C:\vim.zip - Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586rt.zip -OutFile C:\rt.zip + Invoke-WebRequest https://github.com/dense-analysis/ale/releases/download/v4.0.0/vim80-586rt.zip -OutFile C:\rt.zip [IO.Compression.ZipFile]::ExtractToDirectory('C:\rt.zip', 'C:\vim') rm C:\rt.zip