about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-01-19 15:49:42 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-01-20 08:35:48 -0800
commit254380e2f31a943d60ff0d7b6dc2993c85552fbb (patch)
tree7b0884c164e05dabb14d8511ce8687342bf5333a
parentc6e4faa617f16103cb6d74a9edfbc891cbf5ce0f (diff)
parent92e98a06d4443b9f2d108d754d3a11761a0ae7bc (diff)
downloadrust-254380e2f31a943d60ff0d7b6dc2993c85552fbb.tar.gz
rust-254380e2f31a943d60ff0d7b6dc2993c85552fbb.zip
Rollup merge of #39146 - alexcrichton:fix-osx-debug, r=michaelwoerister
travis: Fix post-failure lldb invocation

Pass an absolute path, not just the basename.
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index ec56872698c..c93079e3121 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -49,7 +49,7 @@ matrix:
         echo 'bt all' > cmds;
         for file in $(ls /cores); do
           echo core file $file;
-          lldb -c $file `which ld` -b -s cmds;
+          lldb -c /cores/$file `which ld` -b -s cmds;
         done
 
     - env: >