From a9b62895c193079eb07f7be9b50e241975f019d7 Mon Sep 17 00:00:00 2001 From: Nicolas Pouillard Date: Thu, 20 Nov 2014 23:06:54 +0100 Subject: [PATCH] [docker] disable colors --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5870046..16fb9da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,6 @@ WORKDIR /hx RUN cabal install ADD https://github.com/np/cmdcheck/raw/master/cmdcheck /hx/cmdcheck RUN PATH=/hx/dist/build/hx:$PATH \ - bash -e /hx/cmdcheck --log=/hx/tests.log tests/*.t || echo "Tests failed!" + bash -e /hx/cmdcheck --color=no --log=/hx/tests.log tests/*.t || echo "Tests failed!" RUN cat /hx/tests.log #RUN apt-get update && apt-get install ${OPTS_APT} lib-ghc...