relax apt version regex even further to be able to cope with versions like 2.5.3ubuntu0.1

This commit is contained in:
Johannes Schauer Marin Rodrigues 2023-02-09 10:20:25 +01:00
parent 9ebb3d07ac
commit 8f8f5bd706
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -4713,7 +4713,7 @@ sub main() {
);
close $fh;
if ( $? == 0
and $content =~ /^apt (\d+\.\d+\.\d+)\w* \(\S+\)$/am) {
and $content =~ /^apt (\d+\.\d+\.\d+)\S* \(\S+\)$/am) {
$aptversion = version->new($1);
}
if ($aptversion < "2.3.14") {