aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-wrapper.sh
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-08-24 15:50:51 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-08-24 15:50:51 -0400
commit7ac81ccfad04b1f0d3bad8f3b596e579b5f37224 (patch)
tree8abd4b8c4be2e8b44dc7315977544b348072793d /dev/ci/ci-wrapper.sh
parent85fdc6f58099d7bd605eb1f10d2a250a87e43771 (diff)
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
Diffstat (limited to 'dev/ci/ci-wrapper.sh')
-rwxr-xr-xdev/ci/ci-wrapper.sh2
1 files changed, 1 insertions, 1 deletions
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
}