diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-05-10 16:41:49 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-05-10 16:41:49 +0000 |
commit | 477c0985843fde0fa16dabfbb758b62d454c4983 (patch) | |
tree | 0c11854e7eb39bde5c2f1d0121b8cbcf873b2cb1 | |
parent | f878debab03fec3030c959ab05d794eb9023a12f (diff) |
Fix procps-ng currency
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11845 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | lfs-latest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lfs-latest.php b/lfs-latest.php index 629ce3192..6fe2ea0ca 100644 --- a/lfs-latest.php +++ b/lfs-latest.php @@ -280,7 +280,7 @@ if ( $package == "zstd" ) $dirpath = "https://github.com/facebook/zstd/rel } if ( $package == "procps-ng" ) - return find_max( $lines, "/release/", "/^.* ([\d\.]+).*$/" ); + return find_max( $lines, "/v\d/", "/^.*v([\d\.]+).*$/" ); if ( $package == "psmisc" ) return find_max( $lines, "/^v/", "/^v([\d\.]+).*$/" ); |