about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-01-17 18:55:24 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-01-17 18:55:24 -0800
commit92e98a06d4443b9f2d108d754d3a11761a0ae7bc (patch)
treea1a3c37b399fe9fcc3c3f60545f2d35690228547
parentc07a6ae77cd4ceb3cf591d34c5608ca91d1f75d4 (diff)
downloadrust-92e98a06d4443b9f2d108d754d3a11761a0ae7bc.tar.gz
rust-92e98a06d4443b9f2d108d754d3a11761a0ae7bc.zip
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 abd0a8fe346..b2ff5bb0f4e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -50,7 +50,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: >