about summary refs log tree commit diff
path: root/src/ci
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2019-02-06 00:29:16 +0900
committerGitHub <noreply@github.com>2019-02-06 00:29:16 +0900
commit4c243e2c3d8f02cdcd22fe68acf6a0b3edca2078 (patch)
tree23a637b6afe48a3f3333e7e5c75e2d5457268406 /src/ci
parent64f0032a3739b18ae45387744340d9c7ce48b145 (diff)
parent2bfb4b336fc8fcd499c36dbc997dd18c7a5e62cf (diff)
downloadrust-4c243e2c3d8f02cdcd22fe68acf6a0b3edca2078.tar.gz
rust-4c243e2c3d8f02cdcd22fe68acf6a0b3edca2078.zip
Rollup merge of #58162 - pietroalbini:track-259, r=alexcrichton
Add more debugging code to track down appveyor 259 exit code

cc https://github.com/rust-lang/rust/issues/58160
r? @alexcrichton
Diffstat (limited to 'src/ci')
-rwxr-xr-xsrc/ci/run.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh
index 0f2517c7d1f..0841e70a6ed 100755
--- a/src/ci/run.sh
+++ b/src/ci/run.sh
@@ -127,7 +127,13 @@ if [ ! -z "$SCRIPT" ]; then
   set +e
   sh -x -c "$SCRIPT"
   ret=$?
-  echo "script exited with $ret"
+  echo "exit code in src/ci/run.sh: $ret"
+
+  echo "tasklist:"
+  tasklist
+  echo -n "location of sh: "
+  where sh
+
   exit $ret
 else
   do_make() {