forked from DGNum/colmena
deployment: Display the resulting paths if the goal is to build only
Reference: #18
This commit is contained in:
parent
0047a0dc91
commit
81375e71b2
1 changed files with 6 additions and 2 deletions
|
@ -377,8 +377,12 @@ impl Deployment {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
if goal != Goal::Build {
|
bar.success_quiet();
|
||||||
bar.success_quiet();
|
if goal == Goal::Build {
|
||||||
|
for (node, profile) in profiles.iter() {
|
||||||
|
let bar = progress.create_task_progress(node.to_string());
|
||||||
|
bar.success(&format!("Built {:?}", profile.as_path()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
drop(permit);
|
drop(permit);
|
||||||
|
|
Loading…
Reference in a new issue