Skip to content

Commit

Permalink
travis: Fix post-failure lldb invocation
Browse files Browse the repository at this point in the history
Pass an absolute path, not just the basename.
  • Loading branch information
alexcrichton committed Jan 18, 2017
1 parent c07a6ae commit 92e98a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand Down

0 comments on commit 92e98a0

Please sign in to comment.