travis: Fix post-failure lldb invocation

Pass an absolute path, not just the basename.
This commit is contained in:
Alex Crichton 2017-01-17 18:55:24 -08:00
parent c07a6ae77c
commit 92e98a06d4
1 changed files with 1 additions and 1 deletions

View File

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