From 7cf8ba06003da4cdacef5ae46e44af264ab4be05 Mon Sep 17 00:00:00 2001 From: thespad Date: Wed, 22 May 2024 17:15:20 +0100 Subject: [PATCH] Update build_version --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 395d45e..ff73fb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN \ echo "**** setup openssh environment ****" && \ sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config && \ usermod --shell /bin/bash abc && \ - echo "Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" > /build_version && \ + printf "Linuxserver.io version:- ${VERSION}\nBuild-date:- ${BUILD_DATE}" > /build_version && \ rm -rf \ /tmp/* diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a28e17b..85bb87a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,7 +31,7 @@ RUN \ echo "**** setup openssh environment ****" && \ sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config && \ usermod --shell /bin/bash abc && \ - echo "Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" > /build_version && \ + printf "Linuxserver.io version:- ${VERSION}\nBuild-date:- ${BUILD_DATE}" > /build_version && \ rm -rf \ /tmp/*