mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-18 21:28:02 +00:00
scripts/feeds: fix accepting "-" in feed type string
Fixes a syntax error in processing the type src-git-full Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
a089d55170
commit
d5cd80a1e8
@ -55,7 +55,7 @@ sub parse_file($$) {
|
||||
$line++;
|
||||
next unless /\S/;
|
||||
|
||||
my ($type, $flags, $name, $urls) = m!^src-(\w+)((?:\s+--\w+(?:=\S+)?)*)\s+(\w+)(?:\s+(\S.*))?$!;
|
||||
my ($type, $flags, $name, $urls) = m!^src-([\w\-]+)((?:\s+--\w+(?:=\S+)?)*)\s+(\w+)(?:\s+(\S.*))?$!;
|
||||
unless ($type && $name) {
|
||||
die "Syntax error in $fname, line $line\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user