Skip to content

Commit e065dcb

Browse files
committed
Revert "list: print message with there's no task with description"
This reverts commit 2508bed. I still want to do this, but since it break some existing Taskfiles, let's give a little more thought on this first.
1 parent 9619c7f commit e065dcb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

help.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ import (
1010
func (e *Executor) PrintTasksHelp() {
1111
tasks := e.tasksWithDesc()
1212
if len(tasks) == 0 {
13-
e.outf("task: No tasks with description available")
1413
return
1514
}
16-
e.outf("task: Available tasks for this project:")
15+
e.outf("Available tasks for this project:")
1716

1817
// Format in tab-separated columns with a tab stop of 8.
1918
w := tabwriter.NewWriter(e.Stdout, 0, 8, 0, '\t', 0)

0 commit comments

Comments
 (0)