Skip to content

Commit 92e98a0

Browse files
committed
travis: Fix post-failure lldb invocation
Pass an absolute path, not just the basename.
1 parent c07a6ae commit 92e98a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ matrix:
5050
echo 'bt all' > cmds;
5151
for file in $(ls /cores); do
5252
echo core file $file;
53-
lldb -c $file `which ld` -b -s cmds;
53+
lldb -c /cores/$file `which ld` -b -s cmds;
5454
done
5555
5656
- env: >

0 commit comments

Comments
 (0)