-
Notifications
You must be signed in to change notification settings - Fork 71
Add fmt
command
#510
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 fmt
command
#510
Conversation
} | ||
|
||
let cmd: &[&dyn AsRef<OsStr>] = | ||
if check { &[&"cargo", &"fmt", &"--check"] } else { &[&"cargo", &"fmt"] }; |
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.
Shouldn't we just forward the arguments to cargo fmt
directly instead of handling this ourselves?
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.
Well, we only want --check
and --help
, so better handle the available options ourselves imo.
build_system/src/fmt.rs
Outdated
fn show_usage() { | ||
println!( | ||
r#" | ||
`test` command help: |
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.
You meant?
`test` command help: | |
`fmt` command help: |
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.
Woups.
Updated! |
No description provided.