mirror of
https://github.com/Swatinem/rust-cache
synced 2025-06-19 06:43:41 +00:00
lol, dependency check was reversed
This commit is contained in:
parent
7c190ef171
commit
07a2ee71bc
5 changed files with 32 additions and 53 deletions
|
@ -14,7 +14,7 @@ export class Workspace {
|
|||
}),
|
||||
);
|
||||
for (const pkg of meta.packages) {
|
||||
if (!pkg.manifest_path.startsWith(this.root)) {
|
||||
if (pkg.manifest_path.startsWith(this.root)) {
|
||||
continue;
|
||||
}
|
||||
const targets = pkg.targets.filter((t) => t.kind[0] === "lib").map((t) => t.name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue