diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-10-24 16:24:48 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-10-24 16:24:48 -0500 |
commit | 7c8e399d9bc5e832870d63cf73ee05ddf94defdf (patch) | |
tree | d63fb43a546bf99b4c7aacd76c85574f85544745 | |
parent | 8cece120f9f20293da7f499970c497cb3c17200d (diff) |
Fix 'file' currency
-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 54a16eda2..099d7032c 100644 --- a/lfs-latest-git.php +++ b/lfs-latest-git.php @@ -114,7 +114,7 @@ if ( $package == "e2fsprogs" ) $dirpath = "https://sourceforge.net/projects/e2f if ( $package == "expat" ) $dirpath = "http://sourceforge.net/projects/expat/files"; if ( $package == "elfutils" ) $dirpath = "https://sourceware.org/ftp/elfutils"; if ( $package == "expect" ) $dirpath = "http://sourceforge.net/projects/expect/files"; -if ( $package == "file" ) $dirpath = "https://github.com/file/file/releases"; +if ( $package == "file" ) $dirpath = "https://github.com/file/file/tags"; if ( $package == "flex" ) $dirpath = "https://github.com/westes/flex/releases"; if ( $package == "gcc" ) $dirpath = max_parent( $dirpath, "gcc-" ); if ( $package == "iana-etc" ) $dirpath = "https://github.com/Mic92/iana-etc/releases"; |