From 63f1954c2a287b955306088a9870cea828402f58 Mon Sep 17 00:00:00 2001 From: jwihardi Date: Tue, 7 Oct 2025 21:29:58 -0400 Subject: [PATCH] ensure eselect-repository installed and updated checking if guru is enablede --- dist-gentoo/install-deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist-gentoo/install-deps.sh b/dist-gentoo/install-deps.sh index a492fcef1..cc6730475 100644 --- a/dist-gentoo/install-deps.sh +++ b/dist-gentoo/install-deps.sh @@ -9,12 +9,14 @@ printf "If not, you must ensure you are using the correct GCC version and set it printf "${STY_RESET}" pause +x sudo emerge --noreplace app-eselect/eselect-repository + if [[ -z $(eselect repository list | grep localrepo) ]]; then v sudo eselect repository create localrepo v sudo eselect repository enable localrepo fi -if [[ -z $(eselect repository list | grep guru) ]]; then +if [[ ! $(eselect repository list | grep guru) =~ "guru \*" ]]; then v sudo eselect repository enable guru fi