Skip to content

Commit

Permalink
Rollup merge of rust-lang#39146 - alexcrichton:fix-osx-debug, r=micha…
Browse files Browse the repository at this point in the history
…elwoerister

travis: Fix post-failure lldb invocation

Pass an absolute path, not just the basename.
  • Loading branch information
alexcrichton committed Jan 20, 2017
2 parents c6e4faa + 92e98a0 commit 254380e
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 @@ -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: >
Expand Down

0 comments on commit 254380e

Please sign in to comment.