Skip to content

Commit 254380e

Browse files
committed
Rollup merge of #39146 - alexcrichton:fix-osx-debug, r=michaelwoerister
travis: Fix post-failure lldb invocation Pass an absolute path, not just the basename.
2 parents c6e4faa + 92e98a0 commit 254380e

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
@@ -49,7 +49,7 @@ matrix:
4949
echo 'bt all' > cmds;
5050
for file in $(ls /cores); do
5151
echo core file $file;
52-
lldb -c $file `which ld` -b -s cmds;
52+
lldb -c /cores/$file `which ld` -b -s cmds;
5353
done
5454
5555
- env: >

0 commit comments

Comments
 (0)