Skip to content

Commit 8e57542

Browse files
committed
more broken lockfile
1 parent 3c3919e commit 8e57542

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/prepare.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,11 @@ fn run_command(cmd: Command) -> anyhow::Result<()> {
165165
|| line.contains("error: cyclic package dependency: package ")
166166
{
167167
broken_deps = true;
168-
} else if line.contains("error: failed to parse lock file at") {
168+
} else if line.contains("error: failed to parse lock file at")
169+
|| line.contains(
170+
"error: Attempting to resolve a dependency with more than one crate with links=",
171+
)
172+
{
169173
broken_lockfile = true;
170174
}
171175
};

0 commit comments

Comments
 (0)