Petar Koynov
unread,May 22, 2023, 1:51:28 PM5/22/23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to opkg-...@googlegroups.com, yo...@lists.yoctoproject.org, alex.s...@ni.com, Petar Koynov
Attempting to add feeds with some special names that match
architecture names was returning an error:
"5 The named feed already exists"
Make sourceTypePattern in createFeedLineRegex only match
feed configuration lines src or dist
Signed-off-by: Petar Koynov <
petar....@ni.com>
---
opkg-feed | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opkg-feed b/opkg-feed
index 25ef879..36d4463 100755
--- a/opkg-feed
+++ b/opkg-feed
@@ -171,7 +171,7 @@ createFeedLineRegex()
# 1 = full source type with any quotes
# 2 = source type without quotes if quoted
# 3 = source type if unquoted
- sourceTypePattern='("([^"]*)"|(\S+))\s+';
+ sourceTypePattern='("([^"](src|dist)(/gz)?)"|(src|dist)(/gz)?)\s+';
# Feed name capture groups (4, 5, 6)
# 4 = full feed name with any quotes
--
2.32.0