1
0
mirror of https://github.com/go-task/task.git synced 2025-04-04 22:24:25 +02:00

taskfile: missing task: prefix to the error message

This commit is contained in:
Sergey 2019-01-23 02:01:53 +05:00
parent 9ed2dca427
commit 44a63580f0
No known key found for this signature in database
GPG Key ID: E291860300B0B63C

View File

@ -17,7 +17,7 @@ var (
ErrIncludedTaskfilesCantHaveIncludes = errors.New("task: Included Taskfiles can't have includes. Please, move the include to the main Taskfile")
// ErrNoTaskfileFound is returned when Taskfile.yml is not found
ErrNoTaskfileFound = errors.New(`no Taskfile.yml found. Use "task --init" to create a new one`)
ErrNoTaskfileFound = errors.New(`task: No Taskfile.yml found. Use "task --init" to create a new one`)
)
// Taskfile reads a Taskfile for a given directory