Skip to content

Commit

Permalink
fix: pixi install --all output missing newline (prefix-dev#1487)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshmanick authored and jjjermiah committed Jun 11, 2024
1 parent 3f2f4bd commit c13b027
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/cli/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,9 @@ pub async fn execute(args: Args) -> miette::Result<()> {
);
} else {
eprintln!(
"{}The following environments have been installed{}: \n\t{}",
"{}The following environments have been installed: {}\t{}",
console::style(console::Emoji("✔ ", "")).green(),
installed_envs
.iter()
.map(|n| n.fancy_display())
.join("\n\t"),
installed_envs.iter().map(|n| n.fancy_display()).join(", "),
detached_envs_message
);
}
Expand Down

0 comments on commit c13b027

Please sign in to comment.