commit f6832c386ba66b659b85a605f3fde0a82dfe6621
parent 952352a8a53e4be81bbd16f9fbc3889df13cba35
Author: Stefan Koch <programming@stefan-koch.name>
Date: Sat, 14 Sep 2019 19:14:28 +0200
print each step to stdout
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/execution.rs b/src/execution.rs
@@ -12,6 +12,8 @@ pub fn execute_pipeline(pipeline: &pipeline::Pipeline) {
println!("Executing Pipeline \"{}\"", pipeline.name);
for cmd in &pipeline.commands {
+ println!("Step: {}", cmd);
+
// TODO: Successful argument parsing needs a lot more details,
// e.g. for quoted arguments like myprogram "argument 1"
// but for a first shot this works