Skip to content

Commit 3d0ab32

Browse files
authored
newlinenits (#1420)
1 parent 1b2343b commit 3d0ab32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cli/subcommand/install.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ impl CommandExecute for Install {
188188
let msg = feedback
189189
.get_feature_ptr_payload::<String>("dni-det-msg-noninteractive-ptr")
190190
.await
191-
.unwrap_or("Consider using Determinate Nix, for less fuss: https://dtr.mn/determinate-nix\n".into());
191+
.unwrap_or("Consider using Determinate Nix, for less fuss: https://dtr.mn/determinate-nix".into());
192192
post_install_message = Some(msg);
193193
} else {
194194
let base_prompt = feedback
@@ -209,7 +209,7 @@ impl CommandExecute for Install {
209209
loop {
210210
let prompt = if currently_explaining {
211211
&format!(
212-
"\n{}\n{}\n",
212+
"\n{}\n{}",
213213
base_prompt.trim().green(),
214214
explanation.trim()
215215
)
@@ -408,7 +408,7 @@ impl CommandExecute for Install {
408408
);
409409

410410
if let Some(post_message) = post_install_message {
411-
println!("{}", post_message.trim());
411+
println!("{}\n", post_message.trim());
412412
}
413413
},
414414
}

0 commit comments

Comments
 (0)