metadata.pl: fix target profile sorting check
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
15f88192bf
commit
91799d5198
1 changed files with 3 additions and 3 deletions
|
@ -89,11 +89,11 @@ sub parse_target_metadata($) {
|
||||||
};
|
};
|
||||||
push @{$target->{profiles}}, $profile;
|
push @{$target->{profiles}}, $profile;
|
||||||
};
|
};
|
||||||
/^Target-Profile-Name:\s*(.+)\s*$/ and do {
|
/^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1;
|
||||||
|
/^Target-Profile-Priority:\s*(\d+)\s*$/ and do {
|
||||||
|
$profile->{priority} = $1;
|
||||||
$target->{sort} = 1;
|
$target->{sort} = 1;
|
||||||
$profile->{name} = $1;
|
|
||||||
};
|
};
|
||||||
/^Target-Profile-Priority:\s*(\d+)\s*$/ and $profile->{priority} = $1;
|
|
||||||
/^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
|
/^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
|
||||||
/^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
|
/^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
|
||||||
/^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
|
/^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
|
||||||
|
|
Loading…
Reference in a new issue