Fix currency for MarkupSafe

This commit is contained in:
Bruce Dubbs 2024-10-10 13:11:31 -05:00
parent 8d5a2a12e9
commit d26d12f45c

View File

@ -256,6 +256,9 @@ if ( $package == "zstd" ) $dirpath = github("facebook/zstd");
if ( $package == "setuptools" ) if ( $package == "setuptools" )
return find_max( $lines, "/setuptools /", "/^.*setuptools ([\d\.]+)$/" ); return find_max( $lines, "/setuptools /", "/^.*setuptools ([\d\.]+)$/" );
if ( $package == "MarkupSafe" )
return find_max( $lines, "/MarkupSafe /", "/^.*MarkupSafe ([\d\.]+)$/" );
if ( $package == "procps-ng" ) if ( $package == "procps-ng" )
return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" ); return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" );