mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
refactor: allow publishing other packages on error
Previously, if a package failed to publish the whole publishing process would halt. Then, if a re-ran publishing got to an already published package it'd error, which would require users to manually publish the missing packages. This commit fixes that by printing errors, but allowing other members to still get published.
This commit is contained in:
parent
9b70929e02
commit
aa4f283e4c
1 changed files with 8 additions and 10 deletions
|
@ -77,7 +77,6 @@ impl PublishCommand {
|
|||
self,
|
||||
project: &Project,
|
||||
reqwest: reqwest::Client,
|
||||
is_root: bool,
|
||||
refreshed_sources: &RefreshedSources,
|
||||
) -> anyhow::Result<()> {
|
||||
let mut manifest = project
|
||||
|
@ -96,12 +95,10 @@ impl PublishCommand {
|
|||
);
|
||||
|
||||
if manifest.private {
|
||||
if !is_root {
|
||||
println!(
|
||||
"{}",
|
||||
ERROR_STYLE.apply_to("package is private, cannot publish")
|
||||
);
|
||||
}
|
||||
println!(
|
||||
"{}",
|
||||
ERROR_STYLE.apply_to("package is private, refusing to publish")
|
||||
);
|
||||
|
||||
return Ok(());
|
||||
}
|
||||
|
@ -705,7 +702,7 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
|
|||
|
||||
let result = self
|
||||
.clone()
|
||||
.run_impl(&project, reqwest.clone(), true, &refreshed_sources)
|
||||
.run_impl(&project, reqwest.clone(), &refreshed_sources)
|
||||
.await;
|
||||
if project.workspace_dir().is_some() {
|
||||
return result;
|
||||
|
@ -718,8 +715,9 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
|
|||
let this = self.clone();
|
||||
let refreshed_sources = refreshed_sources.clone();
|
||||
async move {
|
||||
this.run_impl(&project, reqwest, false, &refreshed_sources)
|
||||
.await
|
||||
let res = this.run_impl(&project, reqwest, &refreshed_sources).await;
|
||||
display_err(res, " occurred publishing workspace member");
|
||||
Ok(())
|
||||
}
|
||||
})
|
||||
.await
|
||||
|
|
Loading…
Add table
Reference in a new issue