aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorJason Gross2017-08-24 15:50:51 -0400
committerJason Gross2017-08-24 15:50:51 -0400
commit7ac81ccfad04b1f0d3bad8f3b596e579b5f37224 (patch)
tree8abd4b8c4be2e8b44dc7315977544b348072793d /dev
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')
-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 7f22d0e48d..96acc5a11c 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
}