Skip to content

Commit

Permalink
add shell too
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Nov 1, 2024
1 parent b719d67 commit a74f31c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/omnix-health/src/check/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ impl Checkable for ShellCheck {
}

let title = "Shell dotfiles".to_string();
let info = format!("Managed: {:?}; Unmanaged: {:?}", managed, unmanaged);
let info = format!(
"Shell={:?}; Managed: {:?}; Unmanaged: {:?}",
shell, managed, unmanaged
);
let result = if !managed.is_empty() {
CheckResult::Green
} else {
Expand Down

0 comments on commit a74f31c

Please sign in to comment.