From 9d65eeeee12f01cee1155d60f242cdf0a3abf25e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 4 Sep 2017 02:02:38 -0400 Subject: [PATCH] Add missing ampersants in the Makefile targets. Fixes missing unicode test sample documents in distribution files. Signed-off-by: Roberto Rosario --- Makefile | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index 78672835bc..c1cd3f16e3 100644 --- a/Makefile +++ b/Makefile @@ -188,34 +188,34 @@ wheel: clean sdist release_test_via_docker_ubuntu: docker run --rm --name mayan_release -v $(HOME):/host_home:ro -v `pwd`:/host_source -w /source ubuntu:16.04 /bin/bash -c "\ - echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale \ - locale-gen en_US.UTF-8 \ - update-locale LANG=en_US.UTF-8 \ - export LC_ALL=en_US.UTF-8 \ + echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale && \ + locale-gen en_US.UTF-8 && \ + update-locale LANG=en_US.UTF-8 && \ + export LC_ALL=en_US.UTF-8 && \ cp -r /host_source/* . && apt-get update && apt-get install make python-pip -y && pip install -r requirements/build.txt && cp -r /host_home/.pypirc ~/.pypirc && make test_release" release_via_docker_ubuntu: docker run --rm --name mayan_release -v $(HOME):/host_home:ro -v `pwd`:/host_source -w /source ubuntu:16.04 /bin/bash -c "\ - echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale \ - locale-gen en_US.UTF-8 \ - update-locale LANG=en_US.UTF-8 \ - export LC_ALL=en_US.UTF-8 \ + echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale && \ + locale-gen en_US.UTF-8 && \ + update-locale LANG=en_US.UTF-8 && \ + export LC_ALL=en_US.UTF-8 && \ cp -r /host_source/* . && apt-get update && apt-get install make python-pip -y && pip install -r requirements/build.txt && cp -r /host_home/.pypirc ~/.pypirc && make release" release_test_via_docker_alpine: docker run --rm --name mayan_release -v $(HOME):/host_home:ro -v `pwd`:/host_source -w /source alpine /bin/busybox sh -c "\ - echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale \ - locale-gen en_US.UTF-8 \ - update-locale LANG=en_US.UTF-8 \ - export LC_ALL=en_US.UTF-8 \ + echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale && \ + locale-gen en_US.UTF-8 && \ + update-locale LANG=en_US.UTF-8 && \ + export LC_ALL=en_US.UTF-8 && \ cp -r /host_source/* . && apk update && apk add python2 py2-pip make && pip install -r requirements/build.txt && cp -r /host_home/.pypirc ~/.pypirc && make test_release" release_via_docker_alpine: docker run --rm --name mayan_release -v $(HOME):/host_home:ro -v `pwd`:/host_source -w /source alpine /bin/busybox sh -c "\ - echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale \ - locale-gen en_US.UTF-8 \ - update-locale LANG=en_US.UTF-8 \ - export LC_ALL=en_US.UTF-8 \ + echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale && \ + locale-gen en_US.UTF-8 && \ + update-locale LANG=en_US.UTF-8 && \ + export LC_ALL=en_US.UTF-8 && \ cp -r /host_source/* . && apk update && apk add python2 py2-pip make && pip install -r requirements/build.txt && cp -r /host_home/.pypirc ~/.pypirc && make release" test_sdist_via_docker_ubuntu: