From 92e98a06d4443b9f2d108d754d3a11761a0ae7bc Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 17 Jan 2017 18:55:24 -0800 Subject: [PATCH] travis: Fix post-failure lldb invocation Pass an absolute path, not just the basename. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index abd0a8fe346f0..b2ff5bb0f4e9e 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: >