forked from josch/mmdebstrap
relax apt version regex to allow devuan apt versions like 2.5.0devuan1
This commit is contained in:
parent
0ae0adde26
commit
35dc676394
1 changed files with 1 additions and 1 deletions
|
@ -4451,7 +4451,7 @@ sub main() {
|
|||
);
|
||||
close $fh;
|
||||
if ( $? == 0
|
||||
and $content =~ /^apt ([0-9]+\.[0-9]+\.[0-9]+) \([a-z0-9-]+\)$/m) {
|
||||
and $content =~ /^apt ([0-9]+\.[0-9]+\.[0-9]+)[a-z0-9]* \([a-z0-9-]+\)$/m) {
|
||||
$aptversion = version->new($1);
|
||||
}
|
||||
if ($aptversion < "2.3.14") {
|
||||
|
|
Loading…
Reference in a new issue