From 7ac81ccfad04b1f0d3bad8f3b596e579b5f37224 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Thu, 24 Aug 2017 15:50:51 -0400 Subject: Don't strip the newline, don't use \r Not sure entirely what it was supposed to do, but stripping the newline erased the following line --- dev/ci/ci-wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/ci/ci-wrapper.sh b/dev/ci/ci-wrapper.sh index 7f22d0e48..96acc5a11 100755 --- a/dev/ci/ci-wrapper.sh +++ b/dev/ci/ci-wrapper.sh @@ -9,7 +9,7 @@ set -eo pipefail function travis_fold { if [ -n "${TRAVIS}" ]; then - echo -n "travis_fold:$1:$2\\r" + echo "travis_fold:$1:$2" fi } -- cgit v1.2.3