]> git.lizzy.rs Git - rust.git/blobdiff - src/ci/docker/scripts/cmake.sh
Auto merge of #99136 - CAD97:layout-faster, r=scottmcm
[rust.git] / src / ci / docker / scripts / cmake.sh
index 70096173403d787f55074dcbb72f2e806dd18c24..f124dbdaa6d3bdcb6a081eeeac39efff548c024c 100755 (executable)
@@ -5,16 +5,16 @@ hide_output() {
   set +x
   on_err="
 echo ERROR: An error was encountered with the build.
-cat /tmp/build.log
+cat /tmp/cmake_build.log
 exit 1
 "
   trap "$on_err" ERR
   bash -c "while true; do sleep 30; echo \$(date) - building ...; done" &
   PING_LOOP_PID=$!
-  "$@" &> /tmp/build.log
+  "$@" &> /tmp/cmake_build.log
   trap - ERR
   kill $PING_LOOP_PID
-  rm /tmp/build.log
+  rm /tmp/cmake_build.log
   set -x
 }