Rollup merge of #39146 - alexcrichton:fix-osx-debug, r=michaelwoerister

travis: Fix post-failure lldb invocation

Pass an absolute path, not just the basename.
This commit is contained in:
Alex Crichton 2017-01-19 15:49:42 -08:00
commit 254380e2f3
1 changed files with 1 additions and 1 deletions

View File

@ -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: >