-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow installing rustfmt without config.extended #49290
Conversation
This assertion was preventing `./x.py install rustfmt` if attempted without an "extended" build configuration, but it actually builds and installs just fine.
(rust_highfive has picked a reviewer for you, use r? to override) |
@bors r+ cc @Mark-Simulacrum -- this seems fine but I thought I'd cc at least one other person who might know if there is some reason that assertion was there |
📌 Commit 86f7d89 has been approved by |
For contrast, the same assertion makes more sense on the But here, the |
I think this is fine as well; we should probably cc @alexcrichton who wrote most of the dist code (AFAIK) though. |
👍 |
@bors: rollup |
…nikomatsakis Allow installing rustfmt without config.extended This assertion was preventing `./x.py install rustfmt` if attempted without an "extended" build configuration, but it actually builds and installs just fine.
…nikomatsakis Allow installing rustfmt without config.extended This assertion was preventing `./x.py install rustfmt` if attempted without an "extended" build configuration, but it actually builds and installs just fine.
…nikomatsakis Allow installing rustfmt without config.extended This assertion was preventing `./x.py install rustfmt` if attempted without an "extended" build configuration, but it actually builds and installs just fine.
This assertion was preventing
./x.py install rustfmt
if attemptedwithout an "extended" build configuration, but it actually builds and
installs just fine.