Skip to content

Commit

Permalink
fix: back to sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Apr 6, 2024
1 parent 5234381 commit d8470d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY --from=ghcr.io/ublue-os/bluefin-cli /usr/share/bash-prexec /usr/share/bash-
COPY --from=ghcr.io/ublue-os/akmods:${AKMODS_FLAVOR}-${FEDORA_MAJOR_VERSION} /rpms /tmp/akmods-rpms

# Build, cleanup, commit.
RUN bash -c ". /tmp/build/build.sh" && \
RUN . /tmp/build/build.sh && \
rm -rf /tmp/* /var/* && \
mkdir -p /var/tmp && \
chmod -R 1777 /var/tmp && \
Expand All @@ -52,7 +52,7 @@ COPY system_files/dx /
COPY packages.json /tmp/packages.json

# Handle packages via packages.json
RUN bash -c ". /tmp/build/build-dx.sh" && \
RUN . /tmp/build/build-dx.sh && \
fc-cache --system-only --really-force --verbose && \
rm -rf /tmp/* /var/* && \
mkdir -p /var/tmp && \
Expand Down
4 changes: 2 additions & 2 deletions build_files/dx/branding-dx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -oue pipefail

if [ "$BASE_IMAGE_NAME" = "silverblue" ]; then
if test "$BASE_IMAGE_NAME" = "silverblue"; then
sed -i '/^PRETTY_NAME/s/Bluefin/Bluefin-dx/' /usr/lib/os-release
elif [ "$BASE_IMAGE_NAME" = "kinoite" ]; then
elif test "$BASE_IMAGE_NAME" = "kinoite"; then
sed -i '/^PRETTY_NAME/s/Aurora/Aurora-dx/' /usr/lib/os-release
fi

0 comments on commit d8470d8

Please sign in to comment.