change curl options to not display progress
authorJacob Lifshay <programmerjake@gmail.com>
Mon, 28 Aug 2017 01:41:06 +0000 (18:41 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Mon, 28 Aug 2017 01:41:06 +0000 (18:41 -0700)
Dockerfile

index c7af1bd460ee9dbd6bdde2946f5e61c645458462..93280cec528ea5c84f18f5e3330b75f39b94ddf0 100644 (file)
@@ -3,5 +3,5 @@ RUN apt-get update -q && apt-get dist-upgrade -qy && apt-get install -qy clang-4
 WORKDIR /build
 COPY . /build
 RUN ./docker-build-scripts/build.sh
-RUN ./build/src/demo/demo > demo-output.txt 2>&1 && convert output.bmp output.png && curl --upload-file ./output.png https://transfer.sh/output.png && echo && curl --upload-file ./demo-output.txt https://transfer.sh/demo-output.txt && echo || echo running failed
+RUN ./build/src/demo/demo > demo-output.txt 2>&1 && convert output.bmp output.png && curl -sS --upload-file ./output.png https://transfer.sh/output.png && echo && curl -sS --upload-file ./demo-output.txt https://transfer.sh/demo-output.txt && echo || echo running failed
 CMD ["/bin/bash"]