Skip to content

Commit 9083b52

Browse files
Check $CARGO before $PATH
1 parent 1c8cbe7 commit 9083b52

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

clippy_dev/src/lint.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::{cargo_clippy_path, exit_if_err};
2-
use std::fs;
32
use std::process::{self, Command};
3+
use std::{env, fs};
44

55
pub fn run<'a>(path: &str, args: impl Iterator<Item = &'a String>) {
66
let is_file = match fs::metadata(path) {
@@ -13,7 +13,7 @@ pub fn run<'a>(path: &str, args: impl Iterator<Item = &'a String>) {
1313

1414
if is_file {
1515
exit_if_err(
16-
Command::new("cargo")
16+
Command::new(env::var("CARGO").unwrap_or("cargo".into()))
1717
.args(["run", "--bin", "clippy-driver", "--"])
1818
.args(["-L", "./target/debug"])
1919
.args(["-Z", "no-codegen"])
@@ -23,7 +23,11 @@ pub fn run<'a>(path: &str, args: impl Iterator<Item = &'a String>) {
2323
.status(),
2424
);
2525
} else {
26-
exit_if_err(Command::new("cargo").arg("build").status());
26+
exit_if_err(
27+
Command::new(env::var("CARGO").unwrap_or("cargo".into()))
28+
.arg("build")
29+
.status(),
30+
);
2731

2832
let status = Command::new(cargo_clippy_path())
2933
.arg("clippy")

clippy_dev/src/serve.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ use std::ffi::OsStr;
22
use std::num::ParseIntError;
33
use std::path::Path;
44
use std::process::Command;
5-
use std::thread;
65
use std::time::{Duration, SystemTime};
6+
use std::{env, thread};
77

88
/// # Panics
99
///
@@ -16,7 +16,7 @@ pub fn run(port: u16, lint: Option<&String>) -> ! {
1616

1717
loop {
1818
if mtime("util/gh-pages/lints.json") < mtime("clippy_lints/src") {
19-
Command::new("cargo")
19+
Command::new(env::var("CARGO").unwrap_or("cargo".into()))
2020
.arg("collect-metadata")
2121
.spawn()
2222
.unwrap()

clippy_lints/src/utils/internal_lints/metadata_collector.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ use rustc_span::{sym, Loc, Span, Symbol};
2828
use serde::ser::SerializeStruct;
2929
use serde::{Serialize, Serializer};
3030
use std::collections::{BTreeSet, BinaryHeap};
31-
use std::fmt;
3231
use std::fmt::Write as _;
3332
use std::fs::{self, File};
3433
use std::io::prelude::*;
3534
use std::path::{Path, PathBuf};
3635
use std::process::Command;
36+
use std::{env, fmt};
3737

3838
/// This is the json output file of the lint collector.
3939
const JSON_OUTPUT_FILE: &str = "../util/gh-pages/lints.json";
@@ -415,7 +415,7 @@ fn get_lint_output(lint_name: &str, example: &[&mut String], clippy_project_root
415415

416416
let prefixed_name = format!("{CLIPPY_LINT_GROUP_PREFIX}{lint_name}");
417417

418-
let mut cmd = Command::new("cargo");
418+
let mut cmd = Command::new(env::var("CARGO").unwrap_or("cargo".into()));
419419

420420
cmd.current_dir(clippy_project_root)
421421
.env("CARGO_INCREMENTAL", "0")

lintcheck/src/main.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ impl Crate {
367367
//
368368
// The wrapper is set to the `lintcheck` so we can force enable linting and ignore certain crates
369369
// (see `crate::driver`)
370-
let status = Command::new("cargo")
370+
let status = Command::new(env::var("CARGO").unwrap_or("cargo".into()))
371371
.arg("check")
372372
.arg("--quiet")
373373
.current_dir(&self.path)
@@ -441,7 +441,7 @@ impl Crate {
441441

442442
/// Builds clippy inside the repo to make sure we have a clippy executable we can use.
443443
fn build_clippy() {
444-
let status = Command::new("cargo")
444+
let status = Command::new(env::var("CARGO").unwrap_or("cargo".into()))
445445
.arg("build")
446446
.status()
447447
.expect("Failed to build clippy!");
@@ -816,7 +816,7 @@ fn lintcheck_test() {
816816
"--crates-toml",
817817
"lintcheck/test_sources.toml",
818818
];
819-
let status = std::process::Command::new("cargo")
819+
let status = std::process::Command::new(env::var("CARGO").unwrap_or("cargo".into()))
820820
.args(args)
821821
.current_dir("..") // repo root
822822
.status();

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl ClippyCmd {
105105
}
106106

107107
fn into_std_cmd(self) -> Command {
108-
let mut cmd = Command::new("cargo");
108+
let mut cmd = Command::new(env::var("CARGO").unwrap_or("cargo".into()));
109109
let clippy_args: String = self
110110
.clippy_args
111111
.iter()

0 commit comments

Comments
 (0)