We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4978791 commit 2070f5eCopy full SHA for 2070f5e
1 file changed
src/skill.rs
@@ -462,10 +462,19 @@ pub fn status() {
462
println!("{:<20}{}", format!("{label}:"), value);
463
}
464
465
+ let any_exist = SKILL_NAMES
466
+ .iter()
467
+ .any(|name| skill_store_path(name).exists());
468
let all_exist = SKILL_NAMES
469
.iter()
470
.all(|name| skill_store_path(name).exists());
471
472
+ if !any_exist {
473
+ row("Installed", &"No".red().to_string());
474
+ println!("\nRun 'hotdata skills install' to install.");
475
+ return;
476
+ }
477
+
478
if !all_exist {
479
row("Installed", &"Partial".yellow().to_string());
480
for skill_name in SKILL_NAMES {
0 commit comments