mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Respect pre-existing RUSTC_BOOTSTRAP setting
This commit is contained in:
parent
15b4f91f3b
commit
df2d2899bc
1 changed files with 4 additions and 0 deletions
|
@ -410,6 +410,10 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
|
|||
}
|
||||
|
||||
fn needs_rustc_bootstrap() -> bool {
|
||||
if env::var_os("RUSTC_BOOTSTRAP").is_some_and(|var| !var.is_empty()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
let rustc = if let Some(rustc) = env::var_os("RUSTC") {
|
||||
PathBuf::from(rustc)
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue