From 02870456387c94bfd68fd26f6bf0cfaf8b3accff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rex?= Date: Thu, 10 Jul 2025 02:07:19 +0100 Subject: [PATCH] chore: remove OK graph --- src/helpers.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/helpers.rs b/src/helpers.rs index 374e6c1..e6eca53 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -38,12 +38,9 @@ pub(crate) fn run_kcl_command( if output_res.status.success() { if let Some(output_file) = output { - Ok(format!("✅ {}", output_file)) + Ok(format!("{}", output_file)) } else { - Ok(format!( - "✅ {}", - String::from_utf8_lossy(&output_res.stdout) - )) + Ok(format!("{}", String::from_utf8_lossy(&output_res.stdout))) } } else { Err(anyhow::anyhow!(