From 403c0bf169c82fa2f8bb50b05054f25d2a6b7b58 Mon Sep 17 00:00:00 2001 From: bobslept <38557801+bobslept@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:22:03 +0200 Subject: [PATCH] chore: actually enable gnome-vrr on f39 builds (#581) --- Containerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Containerfile b/Containerfile index 4e506f03ac1..89de26e4e7a 100644 --- a/Containerfile +++ b/Containerfile @@ -25,15 +25,13 @@ COPY image-info.sh /tmp/image-info.sh COPY usr/etc/ublue-update/ublue-update.toml /tmp/ublue-update.toml # GNOME VRR -RUN if grep -qv "39" <<< "${FEDORA_MAJOR_VERSION}"; then \ - wget https://copr.fedorainfracloud.org/coprs/kylegospo/gnome-vrr/repo/fedora-"${FEDORA_MAJOR_VERSION}"/kylegospo-gnome-vrr-fedora-"${FEDORA_MAJOR_VERSION}".repo -O /etc/yum.repos.d/_copr_kylegospo-gnome-vrr.repo && \ +RUN wget https://copr.fedorainfracloud.org/coprs/kylegospo/gnome-vrr/repo/fedora-"${FEDORA_MAJOR_VERSION}"/kylegospo-gnome-vrr-fedora-"${FEDORA_MAJOR_VERSION}".repo -O /etc/yum.repos.d/_copr_kylegospo-gnome-vrr.repo && \ if [ ${FEDORA_MAJOR_VERSION} -lt 39 ]; then \ rpm-ostree override replace --experimental --from repo=copr:copr.fedorainfracloud.org:kylegospo:gnome-vrr mutter mutter-common gnome-control-center gnome-control-center-filesystem xorg-x11-server-Xwayland \ ; else \ rpm-ostree override replace --experimental --from repo=copr:copr.fedorainfracloud.org:kylegospo:gnome-vrr mutter mutter-common gnome-control-center gnome-control-center-filesystem \ ; fi && \ - rm -f /etc/yum.repos.d/_copr_kylegospo-gnome-vrr.repo \ - ; fi + rm -f /etc/yum.repos.d/_copr_kylegospo-gnome-vrr.repo # Starship Shell Prompt RUN curl -Lo /tmp/starship.tar.gz "https://github.com/starship/starship/releases/latest/download/starship-x86_64-unknown-linux-gnu.tar.gz" && \