aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/ci-wrapper.sh
diff options
context:
space:
mode:
authorJason Gross2017-08-24 15:46:22 -0400
committerJason Gross2017-08-24 15:46:22 -0400
commit85fdc6f58099d7bd605eb1f10d2a250a87e43771 (patch)
tree1483fda35134e837b975ceb45ac7268192394490 /dev/ci/ci-wrapper.sh
parented29da3f95056dd92b4d1059371afd7ebf05bd2c (diff)
Swap order of "aggregating..." message and travis_fold
Now the folded line starts with "Aggregating..." and not with "---------"
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 789dbed07c..7f22d0e48d 100755
--- a/dev/ci/ci-wrapper.sh
+++ b/dev/ci/ci-wrapper.sh
@@ -19,6 +19,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${DIR}/../.."
"${DIR}/${CI_SCRIPT}" 2>&1 | tee time-of-build.log
-echo 'Aggregating timing log...' && travis_fold 'start' 'coq.test.timing'
+travis_fold 'start' 'coq.test.timing' && echo 'Aggregating timing log...'
python ./tools/make-one-time-file.py time-of-build.log
travis_fold 'end' 'coq.test.timing'