Skip to content

Commit

Permalink
fix(cli): add a newline after publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
xdoardo committed May 17, 2024
1 parent d069838 commit aaf33dc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/cli/src/commands/package/publish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,13 @@ impl AsyncCliCommand for PackagePublish {
match ident {
PackageIdent::Named(ref n) => {
let url = make_package_url(&client, n);
eprintln!("{} Package URL: {url}", "𖥔".yellow().bold());
eprintln!("\n{} Package URL: {url}", "𖥔".yellow().bold());
}
PackageIdent::Hash(ref h) => {
eprintln!("{} Succesfully published package ({h})", "✔".green().bold());
eprintln!(
"\n{} Succesfully published package ({h})",
"✔".green().bold()
);
}
}

Expand Down

0 comments on commit aaf33dc

Please sign in to comment.