From 275cdf40fbe0cc60c6bdeb18cc4b22c52adda872 Mon Sep 17 00:00:00 2001 From: hirnidrin Date: Mon, 25 Sep 2023 00:54:36 +0200 Subject: [PATCH] feat: Allow multiple justfiles. (#522) --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index d0eb1dd1b4d..d7a0931d352 100644 --- a/Containerfile +++ b/Containerfile @@ -16,7 +16,7 @@ ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION}" ARG PACKAGE_LIST="bluefin" COPY usr /usr -COPY just/custom.just /tmp/just/custom.just +COPY just /tmp/just COPY etc/yum.repos.d/ /etc/yum.repos.d/ COPY packages.json /tmp/packages.json COPY build.sh /tmp/build.sh @@ -43,7 +43,7 @@ RUN /tmp/build.sh && \ systemctl enable dconf-update.service && \ fc-cache -f /usr/share/fonts/ubuntu && \ fc-cache -f /usr/share/fonts/inter && \ - cat /tmp/just/custom.just >> /usr/share/ublue-os/just/60-custom.just && \ + find /tmp/just -iname '*.just' -exec printf "\n\n" \; -exec cat {} \; >> /usr/share/ublue-os/just/60-custom.just && \ rm -f /etc/yum.repos.d/tailscale.repo && \ rm -f /usr/share/applications/fish.desktop && \ rm -f /usr/share/applications/htop.desktop && \