mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
update_package: match only whole feeds name.
if there was a feed name that ended in the same string as another feed the script got confused. Now only match full name.
This commit is contained in:
parent
2b207f1830
commit
a41267e62e
1 changed files with 1 additions and 1 deletions
|
|
@ -441,7 +441,7 @@ check_packages()
|
|||
|
||||
feeds_hash()
|
||||
{
|
||||
grep -v "^#" feeds.conf | grep "$1 " | grep "\^" | sed -e "s/.*[;^]\(.*\)/\1/"
|
||||
grep -v "^#" feeds.conf | grep " $1 " | grep "\^" | sed -e "s/.*[;^]\(.*\)/\1/"
|
||||
}
|
||||
|
||||
insert_feed_hash_in_feeds_config()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue