Commit 2f77c9b
committed
Work around new
The previous commit added `gix-testtools` (by relative path) as a
dev dependency of `gix-index`, to use `gix_testtools::size_ok`.
Because `gix-testtools` itself depends on `gix-index` -- at an
earlier version to not break releasing with csr (see discussion
in #1510 for general info) -- this causes `cargo`, when running in
the top level workspace directory, to consider `-p gix-index`
without an explicit version to be ambiguous.
This made the full CI `test` job fail when the `check` recipe
attempts to run `cargo check` on `gix-index`, with the message
error: There are multiple `gix-index` packages in your project, and the specification `gix-index` is ambiguous.
Please re-run this command with one of the following specifications:
[email protected]
[email protected]
error: Recipe `check` failed on line 87 with exit code 101
where the line number is from the `justfile`.
To fix this, this changes the command to change to the `gix-index`
directory instead of passing `-p gix-index`. (This technique is
used elsewhere in the same recipe already.)gix-index ambiguity for cargo check
1 parent fc13fc3 commit 2f77c9b
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
| |||
0 commit comments