From dc16377e19ae60aa7c03f9ba3a5ae6f63fefad5e Mon Sep 17 00:00:00 2001 From: "Rick Farina (Zero_Chaos)" Date: Sat, 1 Aug 2020 00:57:40 -0400 Subject: [PATCH] bug-461824: ignore pentoo-sources as well --- scripts/bug-461824.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bug-461824.sh b/scripts/bug-461824.sh index 513978226..ed0c0601c 100755 --- a/scripts/bug-461824.sh +++ b/scripts/bug-461824.sh @@ -13,7 +13,7 @@ wait $WAITPIDS if [ -n "$(cat /tmp/_portage_reinstall_.txt)" ]; then cat /tmp/_portage_reinstall_.txt | cut -d":" -f1 > /tmp/badfiles.txt xargs -a /tmp/badfiles.txt qfile -S -C | cut -d' ' -f1 | cut -d':' -f1 > /tmp/badpkg_us.txt - sort -u /tmp/badpkg_us.txt | grep -v portage > /tmp/badpkg.txt + sort -u /tmp/badpkg_us.txt | grep -Ev 'portage|pentoo-sources' > /tmp/badpkg.txt if [ -n "$(cat /tmp/badpkg.txt)" ]; then emerge -1 --buildpkg=y --nodeps $(cat /tmp/badpkg.txt) fi