Skip to content

Commit

Permalink
feat(cli): Don't hide intermediate output artifacts in verbose or deb…
Browse files Browse the repository at this point in the history
…ug modes
  • Loading branch information
alerque committed Mar 25, 2024
1 parent eb73105 commit b61a0f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ impl MakeTargetStatus {
}
pub fn pass(&self) {
let target = self.target.clone();
if target.starts_with(".casile") {
let allow_hide = !CONF.get_bool("debug").unwrap() && !CONF.get_bool("verbose").unwrap();
if allow_hide && target.starts_with(".casile") {
TUI.remove(&self.bar);
} else {
let msg = style(
Expand Down

0 comments on commit b61a0f7

Please sign in to comment.