From d26d12f45c447f265ef9eb15fc4d357797f0039d Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Thu, 10 Oct 2024 13:11:31 -0500 Subject: [PATCH] Fix currency for MarkupSafe --- lfs-latest-git.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lfs-latest-git.php b/lfs-latest-git.php index 55c634e0b..6b7b2d4c2 100644 --- a/lfs-latest-git.php +++ b/lfs-latest-git.php @@ -256,6 +256,9 @@ if ( $package == "zstd" ) $dirpath = github("facebook/zstd"); if ( $package == "setuptools" ) return find_max( $lines, "/setuptools /", "/^.*setuptools ([\d\.]+)$/" ); + if ( $package == "MarkupSafe" ) + return find_max( $lines, "/MarkupSafe /", "/^.*MarkupSafe ([\d\.]+)$/" ); + if ( $package == "procps-ng" ) return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" );