Skip to content

Commit

Permalink
updated output
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Jun 14, 2023
1 parent ed2015d commit 0785191
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/ipk-verify/src/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@ pub trait PrintTable {
cell.style(Attr::ForegroundColor(color::BRIGHT_GREEN));
cell
}
ComponentBinVerifyResult::Skipped { .. } => {
Cell::new(if *out_fmt == OutputFormat::Markdown {
":zero:"
} else {
"SKIP"
})
}
ComponentBinVerifyResult::Skipped { .. } => Cell::new("SKIP"),
ComponentBinVerifyResult::Failed(_) => {
let mut cell = Cell::new(if *out_fmt == OutputFormat::Markdown {
":x:"
Expand Down

0 comments on commit 0785191

Please sign in to comment.