Skip to content

Commit c849169

Browse files
committed
Fix message styling
1 parent 27b942b commit c849169

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

crates/pixi_cli/src/interface.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ impl Interface for CliInterface {
1818
}
1919

2020
fn message(&self, msg: &str) {
21-
eprintln!(
22-
"{}{msg}",
23-
console::style(console::Emoji("⚠️ ", "")).yellow(),
24-
);
21+
eprintln!("{msg}",);
2522
}
2623

2724
fn success(&self, msg: &str) {

0 commit comments

Comments
 (0)