chore: remove OK graph
This commit is contained in:
parent
8fdb482896
commit
0287045638
1 changed files with 2 additions and 5 deletions
|
|
@ -38,12 +38,9 @@ pub(crate) fn run_kcl_command(
|
||||||
|
|
||||||
if output_res.status.success() {
|
if output_res.status.success() {
|
||||||
if let Some(output_file) = output {
|
if let Some(output_file) = output {
|
||||||
Ok(format!("✅ {}", output_file))
|
Ok(format!("{}", output_file))
|
||||||
} else {
|
} else {
|
||||||
Ok(format!(
|
Ok(format!("{}", String::from_utf8_lossy(&output_res.stdout)))
|
||||||
"✅ {}",
|
|
||||||
String::from_utf8_lossy(&output_res.stdout)
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Err(anyhow::anyhow!(
|
Err(anyhow::anyhow!(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue