Ver código fonte

metadata.pl: fix target profile sorting check

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau 9 anos atrás
pai
commit
91799d5198
1 arquivos alterados com 3 adições e 3 exclusões
  1. 3 3
      scripts/metadata.pm

+ 3 - 3
scripts/metadata.pm

@@ -89,11 +89,11 @@ sub parse_target_metadata($) {
 			};
 			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;
-			$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-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
 		/^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");