diff options
author | Remi Collet <remi@remirepo.net> | 2025-10-15 14:58:49 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-10-15 14:58:49 +0200 |
commit | b41f02c325323fea0d37a0982b0465acaeafd001 (patch) | |
tree | 34603e1bf5309ae21f6e5a7e43c540eba90105d7 /checkpkgist.php | |
parent | 7330a1ad99dd72f50f6316774013cc5fdc37852a (diff) |
Diffstat (limited to 'checkpkgist.php')
-rwxr-xr-x | checkpkgist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkpkgist.php b/checkpkgist.php index 021acba..fc01ae8 100755 --- a/checkpkgist.php +++ b/checkpkgist.php @@ -140,7 +140,7 @@ function run($name, $rpm) { if ($rpminfo) { $rpminfo = $rpminfo[0]; - $rpmmainver = $rpminfo['Version']; + $rpmmainver = str_replace('~', '', $rpminfo['Version']); } else { if ($quiet) { return; |