diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-10-25 09:28:22 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-10-25 09:28:22 -0500 |
commit | 843d015a32a9f08ce6a0f7ae5ee424555ee7f292 (patch) | |
tree | 49d7d8304cf11fc68e89377ca7cefaa3522fc29f /lfs-latest-git.php | |
parent | 7c8e399d9bc5e832870d63cf73ee05ddf94defdf (diff) |
Fix currency for vim
Diffstat (limited to 'lfs-latest-git.php')
-rw-r--r-- | lfs-latest-git.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lfs-latest-git.php b/lfs-latest-git.php index 099d7032c..eaf7bc20b 100644 --- a/lfs-latest-git.php +++ b/lfs-latest-git.php @@ -133,7 +133,7 @@ if ( $package == "Jinja" ) $dirpath = "https://pypi.python.org/pypi/Jinja2/ if ( $package == "systemd" ) $dirpath = "https://github.com/systemd/systemd/releases"; if ( $package == "tcl" ) $dirpath = "http://sourceforge.net/projects/tcl/files"; if ( $package == "util-linux" ) $dirpath = max_parent( $dirpath, "v." ); -if ( $package == "vim" ) $dirpath = "https://github.com/vim/vim/releases"; +if ( $package == "vim" ) $dirpath = "https://github.com/vim/vim/tags"; if ( $package == "zstd" ) $dirpath = "https://github.com/facebook/zstd/releases"; //if ( $package == "vim" ) $dirpath = "ftp://ftp.vim.org/pub/vim/unix"; |