include tools & actions when compiling a job
This commit is contained in:
parent
a42031917c
commit
424cbaedf8
1 changed files with 17 additions and 0 deletions
|
|
@ -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(())
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue