display dependend tasks

This commit is contained in:
jaedle
2019-02-24 14:53:39 +01:00
parent 1c3082ffa6
commit 4b3cea3812
4 changed files with 20 additions and 3 deletions

View File

@@ -95,6 +95,13 @@ func (e *Executor) printTaskDetails(task string) {
Logger := e.Logger
displayTaskDetailedDescription(s, Logger)
e.Logger.Outf("")
e.Logger.Outf("dependencies:")
for _, d := range t.Deps {
e.Logger.Outf(" - %s", d.Task)
}
e.Logger.Outf("")
e.Logger.Outf("commands:")