-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Add command aliases from Cargo to x.py commands #71905
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
I'm not opposed to this though not really a fan myself, but it's a minimal patch set so @bors r+ rollup |
📌 Commit b83853d has been approved by |
…crum Add command aliases from Cargo to x.py commands Fixes rust-lang#71357
…crum Add command aliases from Cargo to x.py commands Fixes rust-lang#71357
…crum Add command aliases from Cargo to x.py commands Fixes rust-lang#71357
…crum Add command aliases from Cargo to x.py commands Fixes rust-lang#71357
Rollup of 6 pull requests Successful merges: - rust-lang#71510 (Btreemap iter intertwined) - rust-lang#71727 (SipHasher with keys initialized to 0 should just use new()) - rust-lang#71889 (Explain our RwLock implementation) - rust-lang#71905 (Add command aliases from Cargo to x.py commands) - rust-lang#71914 (Backport 1.43.1 release notes to master) - rust-lang#71921 (explain the types used in the open64 call) Failed merges: r? @ghost
@@ -106,18 +106,18 @@ impl Flags { | |||
Usage: x.py <subcommand> [options] [<paths>...] | |||
|
|||
Subcommands: | |||
build Compile either the compiler or libraries | |||
check Compile either the compiler or libraries, using cargo check | |||
build, b Compile either the compiler or libraries |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't cargo
does not have the additional , b
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it doesn't, but I think it should. I added it to promote discoverability.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can promote discoverability with (b)uild
too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it doesn't, but I think it should. I added it to promote discoverability.
Let me go add it.
Fixes #71357