mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
No need to convert to String first
This commit is contained in:
parent
efb5715dc0
commit
620c049f39
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ const CARGO_EXPAND_RUSTC_WRAPPER: &str = "CARGO_EXPAND_RUSTC_WRAPPER";
|
|||
const ARG_Z_UNPRETTY_EXPANDED: &str = "-Zunpretty=expanded";
|
||||
|
||||
fn cargo_binary() -> OsString {
|
||||
env::var_os("CARGO").unwrap_or_else(|| "cargo".to_owned().into())
|
||||
env::var_os("CARGO").unwrap_or_else(|| OsString::from("cargo"))
|
||||
}
|
||||
|
||||
fn do_rustc_wrapper(wrapper: &OsStr) -> Result<i32> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue