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!(