Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-bashcomp:master commit in: helpers/
Date: Sun, 10 Feb 2019 23:04:30
Message-Id: 1549839849.7052f3bab2abeb620733fff21b2809429bacc554.monsieurp@gentoo
1 commit: 7052f3bab2abeb620733fff21b2809429bacc554
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 10 23:02:43 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 10 23:04:09 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/gentoo-bashcomp.git/commit/?id=7052f3ba
7
8 fix repos.conf files pattern matching.
9
10 Courtesy of Duncan <1i5t5.duncan <AT> cox.net>.
11
12 Closes: https://bugs.gentoo.org/562626
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 helpers/gentoo-common.sh | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/helpers/gentoo-common.sh b/helpers/gentoo-common.sh
19 index c0be688..6e8d51c 100644
20 --- a/helpers/gentoo-common.sh
21 +++ b/helpers/gentoo-common.sh
22 @@ -65,7 +65,7 @@ _parsereposconf() {
23
24 for f in @GENTOO_PORTAGE_EPREFIX@/usr/share/portage/config/repos.conf \
25 @GENTOO_PORTAGE_EPREFIX@/etc/portage/repos.conf \
26 - @GENTOO_PORTAGE_EPREFIX@/etc/portage/repos.conf/*.conf; do
27 + @GENTOO_PORTAGE_EPREFIX@/etc/portage/repos.conf/*; do
28
29 [[ -f ${f} ]] || continue
30 insection=0