Call the right cargo binary
This commit is contained in:
parent
e38676d825
commit
abb27873ea
|
@ -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")
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue