From 9f13f16880eebc89492a6aa4181993b1385fe6db Mon Sep 17 00:00:00 2001 From: renner Date: Thu, 26 Mar 2026 18:24:08 +0100 Subject: [PATCH] chore(ci): switch to heredocs --- Containerfile | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/Containerfile b/Containerfile index 1758c37..1e7aa06 100644 --- a/Containerfile +++ b/Containerfile @@ -6,18 +6,22 @@ COPY --from=ghcr.io/ublue-os/aurora-wallpapers:latest / /wallpapers COPY /logos /logos -RUN set -xeuo pipefail && \ - cd /wallpapers && \ - rm -rf kde/*/gnome-background-properties/ && \ - mkdir -p /out/wallpapers/usr/share/wallpapers /out/wallpapers/usr/share/backgrounds && \ - mv kde/ /out/wallpapers/usr/share/backgrounds/aurora/ && \ - cd /out/wallpapers/usr/share/backgrounds && \ - for dir in aurora/*; do \ - ln -sr "/out/wallpapers/usr/share/backgrounds/${dir}" /out/wallpapers/usr/share/wallpapers/; \ - done && \ - ln -sr /out/wallpapers/usr/share/backgrounds/aurora/aurora-wallpaper-6/ /out/wallpapers/usr/share/backgrounds/aurora/aurora-wallpaper-1 && \ - ln -sr /out/wallpapers/usr/share/backgrounds/aurora/aurora-wallpaper-1/ /out/wallpapers/usr/share/wallpapers/ && \ - rm -rf /wallpapers +RUN <