MCPcopy Index your code
hub / github.com/go-task/task / printTaskDependencies

Function printTaskDependencies

internal/summary/summary.go:96–107  ·  view source on GitHub ↗
(l *logger.Logger, t *ast.Task)

Source from the content-addressed store, hash-verified

94}
95
96func printTaskDependencies(l *logger.Logger, t *ast.Task) {
97 if len(t.Deps) == 0 {
98 return
99 }
100
101 l.Outf(logger.Default, "\n")
102 l.Outf(logger.Default, "dependencies:\n")
103
104 for _, d := range t.Deps {
105 l.Outf(logger.Default, " - %s\n", d.Task)
106 }
107}
108
109func printTaskCommands(l *logger.Logger, t *ast.Task) {
110 if len(t.Cmds) == 0 {

Callers 1

PrintTaskFunction · 0.85

Calls 1

OutfMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…