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

main
parent 9ebb3d07ac
commit 8f8f5bd706
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1

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

Loading…
Cancel
Save