mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
Match flag_value's signature to Command::arg
This commit is contained in:
parent
cfaac2f15c
commit
eda549f0e5
2 changed files with 8 additions and 6 deletions
|
@ -2,14 +2,14 @@ use std::ffi::OsStr;
|
|||
use std::process::Command;
|
||||
|
||||
pub trait CommandExt {
|
||||
fn flag_value<K, V>(&mut self, k: K, v: V)
|
||||
fn flag_value<K, V>(&mut self, k: K, v: V) -> &mut Self
|
||||
where
|
||||
K: AsRef<OsStr>,
|
||||
V: AsRef<OsStr>;
|
||||
}
|
||||
|
||||
impl CommandExt for Command {
|
||||
fn flag_value<K, V>(&mut self, k: K, v: V)
|
||||
fn flag_value<K, V>(&mut self, k: K, v: V) -> &mut Self
|
||||
where
|
||||
K: AsRef<OsStr>,
|
||||
V: AsRef<OsStr>,
|
||||
|
@ -19,10 +19,11 @@ impl CommandExt for Command {
|
|||
if let Some(k) = k.to_str() {
|
||||
if let Some(v) = v.to_str() {
|
||||
self.arg(format!("{}={}", k, v));
|
||||
return;
|
||||
return self;
|
||||
}
|
||||
}
|
||||
self.arg(k);
|
||||
self.arg(v);
|
||||
self
|
||||
}
|
||||
}
|
||||
|
|
|
@ -253,8 +253,7 @@ fn do_cargo_expand() -> Result<i32> {
|
|||
|
||||
for edition in &["2021", "2018", "2015"] {
|
||||
let output = Command::new(&rustfmt)
|
||||
.arg("--edition")
|
||||
.arg(edition)
|
||||
.flag_value("--edition", edition)
|
||||
.arg(&outfile_path)
|
||||
.stderr(Stdio::null())
|
||||
.output();
|
||||
|
@ -337,7 +336,9 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: Coloring, outfile: &Path)
|
|||
cmd.flag_value("--color", "never");
|
||||
}
|
||||
}
|
||||
color => cmd.flag_value("--color", color.to_possible_value().unwrap().get_name()),
|
||||
color => {
|
||||
cmd.flag_value("--color", color.to_possible_value().unwrap().get_name());
|
||||
}
|
||||
}
|
||||
|
||||
for kv in &args.config {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue