Call the right cargo binary

This commit is contained in:
mejrs 2022-08-16 22:02:28 +02:00
parent e38676d825
commit abb27873ea
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ pub fn run(opts: DocOpts) -> anyhow::Result<()> {
std::env::set_var("RUSTDOCFLAGS", flags.join(" "));
cli::run(
Command::new("cargo")
Command::new(concat!(env!("CARGO_HOME"), "/bin/cargo"))
.args(if opts.stable { None } else { Some("+nightly") })
.arg("doc")
.arg("--lib")

View File

@ -37,7 +37,7 @@ pub fn run() -> anyhow::Result<()> {
// Test MSRV
cli::run(
Command::new("cargo")
Command::new(concat!(env!("CARGO_HOME"), "/bin/cargo"))
.arg(format!("+{}", MSRV))
.arg("test")
.arg("--no-default-features")
@ -54,7 +54,7 @@ pub fn run() -> anyhow::Result<()> {
)?;
cli::run(
Command::new("cargo")
Command::new(concat!(env!("CARGO_HOME"), "/bin/cargo"))
.arg("+nightly")
.arg("test")
.arg("--no-default-features")