Skip to content

Commit

Permalink
chore(ci): Updated the error message that themis would display when p…
Browse files Browse the repository at this point in the history
…ublishable crates depend on private crates (#7720)

The original message was hard to understand at a first glance.

#7707 (comment)
  • Loading branch information
frol committed Sep 29, 2022
1 parent a10b5d7 commit aad3bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/themis/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ pub fn recursively_publishable(workspace: &Workspace) -> anyhow::Result<()> {
}
if !outliers.is_empty() {
bail!(ComplianceError {
msg: "These private packages are depended on by publishable packages".to_string(),
msg: "These private crates break publishable crates. Either make these private crates publishable or avoid using them in the publishable crates".to_string(),
expected: None,
outliers: outliers
.into_iter()
Expand Down

0 comments on commit aad3bf2

Please sign in to comment.