No need to convert to String first

This commit is contained in:
David Tolnay 2024-04-06 10:33:38 -07:00
parent efb5715dc0
commit 620c049f39
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -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> {