Skip to content

Commit aaf33dc

Browse files
committed
fix(cli): add a newline after publishing
1 parent d069838 commit aaf33dc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

lib/cli/src/commands/package/publish.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,13 @@ impl AsyncCliCommand for PackagePublish {
149149
match ident {
150150
PackageIdent::Named(ref n) => {
151151
let url = make_package_url(&client, n);
152-
eprintln!("{} Package URL: {url}", "𖥔".yellow().bold());
152+
eprintln!("\n{} Package URL: {url}", "𖥔".yellow().bold());
153153
}
154154
PackageIdent::Hash(ref h) => {
155-
eprintln!("{} Succesfully published package ({h})", "✔".green().bold());
155+
eprintln!(
156+
"\n{} Succesfully published package ({h})",
157+
"✔".green().bold()
158+
);
156159
}
157160
}
158161

0 commit comments

Comments
 (0)