Skip to content

Commit

Permalink
Switch from ftp.vim to ftp.nluug (#1563)
Browse files Browse the repository at this point in the history
Fix "curl: (6) Could not resolve host: ftp.vim.org" when running tests.

This is the link on https://www.vim.org/download.php#unix on this line:
> There is one big file to download that contains almost everything. It
> is found in the unix directory

Looks like that change happened years ago to use https instead of ftp:
vim/vim#3580
  • Loading branch information
idbrii authored Jan 11, 2025
1 parent 49dc8cb commit 35252b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/download_vim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mkdir -p /src && cd /src
if [[ $VIM_VERSION == "git" ]]; then
git clone https://github.com/vim/vim
else
curl http://ftp.vim.org/pub/vim/unix/vim-${VIM_VERSION}.tar.bz2 -o vim.tar.bz2
curl https://ftp.nluug.nl/pub/vim/unix/vim-${VIM_VERSION}.tar.bz2 -o vim.tar.bz2
tar xjf vim.tar.bz2
mv -v vim?? vim
fi

0 comments on commit 35252b3

Please sign in to comment.