From 395006f33854eb0d269ab59b2bed77fab6acdea4 Mon Sep 17 00:00:00 2001 From: bryan Date: Thu, 24 Apr 2025 21:34:16 -0400 Subject: [PATCH] Check legacy sources for universe --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index 67ee4c2..b1bd837 100755 --- a/installJRMC +++ b/installJRMC @@ -538,7 +538,7 @@ install_external_repos() { case $ID in ubuntu) - if ! grep -E '^deb|^Components' /etc/apt/sources.list.d/* | grep -q universe; then + if ! grep -E '^deb|^Components' /etc/apt/sources.list /etc/apt/sources.list.d/* | grep -q universe; then echo "Adding universe repository" if ! execute sudo add-apt-repository -y universe; then err "Adding universe repository failed"