From: Daniel Karbach Date: Thu, 24 Nov 2016 14:23:50 +0000 (+0100) Subject: use printf to echo newlines X-Git-Url: http://git.localhorst.tv/?p=blank.git;a=commitdiff_plain;h=1a8974bcfeb6f6c937f2ec523e52fdc4a3785f1e use printf to echo newlines huh --- diff --git a/scripts/docker/archlinux-run/Dockerfile b/scripts/docker/archlinux-run/Dockerfile index 69f59ca..eeca2ca 100644 --- a/scripts/docker/archlinux-run/Dockerfile +++ b/scripts/docker/archlinux-run/Dockerfile @@ -26,5 +26,5 @@ RUN pacman -S --needed --noconfirm \ zlib \ && paccache -rk 0 \ && mkdir -p /etc/openal \ - && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \ + && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \ ; diff --git a/scripts/docker/centos-run-latest/Dockerfile b/scripts/docker/centos-run-latest/Dockerfile index e19bd26..48074a8 100644 --- a/scripts/docker/centos-run-latest/Dockerfile +++ b/scripts/docker/centos-run-latest/Dockerfile @@ -22,5 +22,5 @@ RUN yum -y install \ SDL2_ttf \ zlib \ && yum -y clean packages \ - && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \ + && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \ ; diff --git a/scripts/docker/debian-run-latest/Dockerfile b/scripts/docker/debian-run-latest/Dockerfile index 85c6b82..e55b338 100644 --- a/scripts/docker/debian-run-latest/Dockerfile +++ b/scripts/docker/debian-run-latest/Dockerfile @@ -21,5 +21,5 @@ RUN apt -y install --no-install-recommends \ libsdl2-ttf-2.0-0 \ zlib1g \ && apt-get -y clean \ - && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \ + && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \ ; diff --git a/scripts/docker/debian-run-testing/Dockerfile b/scripts/docker/debian-run-testing/Dockerfile index d21f0b1..8538b75 100644 --- a/scripts/docker/debian-run-testing/Dockerfile +++ b/scripts/docker/debian-run-testing/Dockerfile @@ -22,5 +22,5 @@ RUN apt -y install --no-install-recommends \ libsdl2-ttf-2.0-0 \ zlib1g \ && apt-get -y clean \ - && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \ + && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \ ; diff --git a/scripts/docker/ubuntu-run-devel/Dockerfile b/scripts/docker/ubuntu-run-devel/Dockerfile index 5a489cb..6ce4106 100644 --- a/scripts/docker/ubuntu-run-devel/Dockerfile +++ b/scripts/docker/ubuntu-run-devel/Dockerfile @@ -23,5 +23,5 @@ RUN apt -y install --no-install-recommends \ libsdl2-ttf-2.0-0 \ zlib1g \ && apt-get -y clean \ - && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \ + && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \ ; diff --git a/scripts/docker/ubuntu-run-latest/Dockerfile b/scripts/docker/ubuntu-run-latest/Dockerfile index fcdfc78..dbda152 100644 --- a/scripts/docker/ubuntu-run-latest/Dockerfile +++ b/scripts/docker/ubuntu-run-latest/Dockerfile @@ -22,7 +22,7 @@ RUN apt -y install --no-install-recommends \ libsdl2-ttf-2.0-0 \ zlib1g \ && apt-get -y clean \ - && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \ + && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \ ; ENV LD_LIBRARY_PATH /usr/lib/x86_64-linux-gnu