Use rustup.rs instead of custom bootstrap Fixes #11361, closes #18874, fixes #19365. Source-Repo: https://github.com/servo/servo Source-Revision: 2be49ac80659f58f2a39910dd79a3f3b5da98945
5 lines
221 B
Bash
Executable File
5 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
# Skip the strip-private and strip-hidden rustdoc passes
|
|
# https://github.com/rust-lang/rust/issues/15347
|
|
rustdoc --no-defaults --passes collapse-docs --passes unindent-comments --passes strip-priv-imports "$@"
|