Skip to content

Commit 161f4c3

Browse files
committed
Have to use cargo command to use + qualifiers
1 parent 8b7ef74 commit 161f4c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xtask/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fn update_msrv_lock() -> Result {
6464

6565
pin_msrv_versions(dry_run, &sh, &cargo, &lockfile)?;
6666

67-
cmd!(sh, "{cargo} +{msrv} test --no-run --all-features").run_if(dry_run)?;
67+
cmd!(sh, "cargo +{msrv} test --no-run --all-features").run_if(dry_run)?;
6868

6969
cmd!(sh, "cp {lockfile} {ci_dir}/Cargo.lock.msrv").run_if(dry_run)?;
7070

@@ -86,7 +86,7 @@ fn update_min_lock() -> Result {
8686

8787
cmd!(
8888
sh,
89-
"{cargo} +nightly -Z minimal-versions test --no-run --all-features"
89+
"cargo +nightly -Z minimal-versions test --package neo4rs --no-run --all-features"
9090
)
9191
.env("RUST_LOG", "debug")
9292
.run_if(dry_run)?;

0 commit comments

Comments
 (0)