mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
2dd3564da1
since interpolation can be used, detection should be a execution time, and not before now, to prevent infinite execution, there's a miximum of 100 calls per task closes #37
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
package task
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
// ErrTaskfileAlreadyExists is returned on creating a Taskfile if one already exists
|
|
ErrTaskfileAlreadyExists = errors.New("task: A Taskfile already exists")
|
|
)
|
|
|
|
type taskFileNotFound struct {
|
|
taskFile string
|
|
}
|
|
|
|
func (err taskFileNotFound) Error() string {
|
|
return fmt.Sprintf(`task: No task file found (is it named "%s"?). Use "task --init" to create a new one`, err.taskFile)
|
|
}
|
|
|
|
type taskNotFoundError struct {
|
|
taskName string
|
|
}
|
|
|
|
func (err *taskNotFoundError) Error() string {
|
|
return fmt.Sprintf(`task: Task "%s" not found`, err.taskName)
|
|
}
|
|
|
|
type taskRunError struct {
|
|
taskName string
|
|
err error
|
|
}
|
|
|
|
func (err *taskRunError) Error() string {
|
|
return fmt.Sprintf(`task: Failed to run task "%s": %v`, err.taskName, err.err)
|
|
}
|
|
|
|
type cyclicDepError struct {
|
|
taskName string
|
|
}
|
|
|
|
func (err *cyclicDepError) Error() string {
|
|
return fmt.Sprintf(`task: Cyclic dependency of task "%s" detected`, err.taskName)
|
|
}
|
|
|
|
type cantWatchNoSourcesError struct {
|
|
taskName string
|
|
}
|
|
|
|
func (err *cantWatchNoSourcesError) Error() string {
|
|
return fmt.Sprintf(`task: Can't watch task "%s" because it has no specified sources`, err.taskName)
|
|
}
|
|
|
|
type dynamicVarError struct {
|
|
cause error
|
|
cmd string
|
|
}
|
|
|
|
func (err *dynamicVarError) Error() string {
|
|
return fmt.Sprintf(`task: Command "%s" in taskvars file failed: %s`, err.cmd, err.cause)
|
|
}
|
|
|
|
// MaximumTaskCallExceededError is returned when a task is called too
|
|
// many times. In this case you probably have a cyclic dependendy or
|
|
// infinite loop
|
|
type MaximumTaskCallExceededError struct {
|
|
task string
|
|
}
|
|
|
|
func (e *MaximumTaskCallExceededError) Error() string {
|
|
return fmt.Sprintf(
|
|
`task: maximum task call exceeded (%d) for task "%s": probably an cyclic dep or infinite loop`,
|
|
MaximumTaskCall,
|
|
e.task,
|
|
)
|
|
}
|