summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-12-28 01:01:49 -0800
committerGravatar Tom Willemse2020-12-28 01:01:49 -0800
commit8e67de7641e179ef2ad429999ba4cf5305aa5aa3 (patch)
treea49ae070910d19df3424ceeaa378c0ec89bf64c8 /Dockerfile
parent094e67d0ea37fc5e1b7e50b67fb1edf9b713cf63 (diff)
downloadblog-8e67de7641e179ef2ad429999ba4cf5305aa5aa3.tar.gz
blog-8e67de7641e179ef2ad429999ba4cf5305aa5aa3.zip
Send coleslaw error output to stdout
I think Jenkins might fail my build because ‘coleslaw --help’ prints to stderr, which it might interpret as errors. So I’m going to try printing help to stdout instead.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 8b54801..e09740b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,4 +9,4 @@ RUN curl -sL `curl -s https://api.github.com/repos/roswell/roswell/releases/late
RUN ros install coleslaw-org/coleslaw
ENV PATH="/root/.evm/bin:/root/.roswell/bin:$PATH"
-RUN coleslaw --help
+RUN coleslaw --help 2>&1