Uh oh!
There was an error while loading. Please reload this page.
Fix full path being output with rustdoc -h - #39312
Conversation
rustdoc would output the full path to the binary when calling it with the `-h` or `--help` flags. This is undesired behavior. It has been replaced with a hardcoded string `rustdoc` to fix the issue. Fixes#39310
rust-highfive
commented
Jan 26, 2017
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @steveklabnik (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
mgattozzi
commented
Jan 30, 2017
@steveklabnik have you had a chance to look at this? |
alexcrichton
commented
Feb 4, 2017
@bors: r+ |
bors
commented
Feb 4, 2017
📌 Commit bb34856 has been approved by |
…richton Fix full path being output with `rustdoc -h` rustdoc would output the full path to the binary when calling it with the `-h` or `--help` flags. This is undesired behavior. It has been replaced with a hardcoded string `rustdoc` to fix the issue. Fixesrust-lang#39310
rustdoc would output the full path to the binary when calling it with
the
-hor--helpflags. This is undesired behavior. It has beenreplaced with a hardcoded string
rustdocto fix the issue.Fixes#39310