diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-01-19 15:49:42 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-01-20 08:35:48 -0800 |
| commit | 254380e2f31a943d60ff0d7b6dc2993c85552fbb (patch) | |
| tree | 7b0884c164e05dabb14d8511ce8687342bf5333a | |
| parent | c6e4faa617f16103cb6d74a9edfbc891cbf5ce0f (diff) | |
| parent | 92e98a06d4443b9f2d108d754d3a11761a0ae7bc (diff) | |
| download | rust-254380e2f31a943d60ff0d7b6dc2993c85552fbb.tar.gz rust-254380e2f31a943d60ff0d7b6dc2993c85552fbb.zip | |
Rollup merge of #39146 - alexcrichton:fix-osx-debug, r=michaelwoerister
travis: Fix post-failure lldb invocation Pass an absolute path, not just the basename.
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index ec56872698c..c93079e3121 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: > |
