From 7052f3bab2abeb620733fff21b2809429bacc554 Mon Sep 17 00:00:00 2001 From: Patrice Clement Date: Mon, 11 Feb 2019 00:02:43 +0100 Subject: fix repos.conf files pattern matching. Courtesy of Duncan <1i5t5.duncan@cox.net>. Closes: https://bugs.gentoo.org/562626 Signed-off-by: Patrice Clement --- helpers/gentoo-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/gentoo-common.sh b/helpers/gentoo-common.sh index c0be688..6e8d51c 100644 --- a/helpers/gentoo-common.sh +++ b/helpers/gentoo-common.sh @@ -65,7 +65,7 @@ _parsereposconf() { for f in @GENTOO_PORTAGE_EPREFIX@/usr/share/portage/config/repos.conf \ @GENTOO_PORTAGE_EPREFIX@/etc/portage/repos.conf \ - @GENTOO_PORTAGE_EPREFIX@/etc/portage/repos.conf/*.conf; do + @GENTOO_PORTAGE_EPREFIX@/etc/portage/repos.conf/*; do [[ -f ${f} ]] || continue insection=0 -- cgit v1.2.3-65-gdbad