diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-12-12 08:25:34 -0600 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2021-12-12 08:25:34 -0600 |
commit | 1ca22874d3856cf4eebfde003c3be87e21d46afe (patch) | |
tree | caedf2126a8d796b4783ea9c54f91ccdafdf3696 /lfs-latest-git.php | |
parent | 88bbf22f8b83290658266330f99ac2a05cad768d (diff) |
Fix currency for psmisc
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 aa365a74d..17b11dea7 100644 --- a/lfs-latest-git.php +++ b/lfs-latest-git.php @@ -281,7 +281,7 @@ if ( $package == "zstd" ) $dirpath = "https://github.com/facebook/zstd/rel return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" ); if ( $package == "psmisc" ) - return find_max( $lines, "/v\d/", "/^.*v([\d\.]+) .*$/" ); + return find_max( $lines, "/v\d/", "/^.*v([\d\.]+).tar.*$/" ); if ( $package == "grub" ) return find_max( $lines, "/grub/", "/^.*grub-([\d\.]+).tar.xz.*$/" ); |