include tools & actions when compiling a job

This commit is contained in:
Sebastian Kuzminsky 2025-01-18 07:08:14 -07:00
parent a42031917c
commit 424cbaedf8

View file

@ -136,6 +136,23 @@ impl Repo {
} }
} }
} }
match &recipe.action {
crate::recipe::Action::process(s) => {
if let Some(tools) = &recipe.dependencies.tools {
for _ in 0..indent {
print!(" ");
}
println!("tools: {:?}", tools);
}
for _ in 0..indent {
print!(" ");
}
println!("action: {s}");
}
_ => (),
}
Ok(()) Ok(())
} }
} }