Skip to content

Commit 6b70df7

Browse files
committed
cargo supports multiple packages but not multiple manifest paths
1 parent 54074b5 commit 6b70df7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ cargo_test() {
6060
cmd="$cmd ${subcmd} --target=$TARGET $1"
6161
if [ "$NOSTD" = "1" ]
6262
then
63-
cmd="$cmd --manifest-path=crates/core_arch/Cargo.toml"
63+
cmd="$cmd -p core_arch"
6464
else
65-
cmd="$cmd --manifest-path=crates/core_arch/Cargo.toml --manifest-path=crates/std_detect/Cargo.toml"
65+
cmd="$cmd -p core_arch -p std_detect"
6666
fi
6767
cmd="$cmd -- $2"
6868
if [ "$NORUN" != "1" ]

0 commit comments

Comments
 (0)