2017-02-27 14:48:50 +02:00
|
|
|
package task
|
2017-02-27 01:43:50 +02:00
|
|
|
|
|
|
|
import (
|
2017-04-13 01:32:56 +02:00
|
|
|
"context"
|
2017-03-06 14:48:56 +02:00
|
|
|
"fmt"
|
2017-07-01 20:05:51 +02:00
|
|
|
"io"
|
2017-02-27 01:43:50 +02:00
|
|
|
"os"
|
2019-06-16 02:12:54 +02:00
|
|
|
"sync"
|
2017-07-08 18:33:55 +02:00
|
|
|
"sync/atomic"
|
2017-02-27 01:43:50 +02:00
|
|
|
|
2020-08-16 20:48:19 +02:00
|
|
|
"github.com/go-task/task/v3/internal/compiler"
|
|
|
|
"github.com/go-task/task/v3/internal/execext"
|
|
|
|
"github.com/go-task/task/v3/internal/logger"
|
|
|
|
"github.com/go-task/task/v3/internal/output"
|
|
|
|
"github.com/go-task/task/v3/internal/summary"
|
2022-01-14 02:11:47 +02:00
|
|
|
"github.com/go-task/task/v3/internal/templater"
|
2020-08-19 10:59:58 +02:00
|
|
|
"github.com/go-task/task/v3/taskfile"
|
2017-03-12 22:18:59 +02:00
|
|
|
|
2022-10-02 17:49:38 +02:00
|
|
|
"github.com/sajari/fuzzy"
|
2022-10-02 00:39:44 +02:00
|
|
|
"golang.org/x/exp/slices"
|
2017-04-13 01:39:52 +02:00
|
|
|
"golang.org/x/sync/errgroup"
|
2017-02-27 01:43:50 +02:00
|
|
|
)
|
|
|
|
|
2017-06-04 21:02:04 +02:00
|
|
|
const (
|
2017-07-08 18:33:55 +02:00
|
|
|
// MaximumTaskCall is the max number of times a task can be called.
|
|
|
|
// This exists to prevent infinite loops on cyclic dependencies
|
|
|
|
MaximumTaskCall = 100
|
2017-06-04 21:02:04 +02:00
|
|
|
)
|
2017-02-27 02:18:53 +02:00
|
|
|
|
2017-06-04 21:02:04 +02:00
|
|
|
// Executor executes a Taskfile
|
|
|
|
type Executor struct {
|
2018-02-17 18:22:18 +02:00
|
|
|
Taskfile *taskfile.Taskfile
|
2019-07-21 15:54:09 +02:00
|
|
|
|
2020-06-12 20:09:53 +02:00
|
|
|
Dir string
|
2022-07-08 19:40:10 +02:00
|
|
|
TempDir string
|
2020-06-12 20:09:53 +02:00
|
|
|
Entrypoint string
|
|
|
|
Force bool
|
|
|
|
Watch bool
|
|
|
|
Verbose bool
|
|
|
|
Silent bool
|
|
|
|
Dry bool
|
|
|
|
Summary bool
|
|
|
|
Parallel bool
|
|
|
|
Color bool
|
|
|
|
Concurrency int
|
2022-09-08 19:22:44 +02:00
|
|
|
Interval string
|
2017-03-02 01:21:36 +02:00
|
|
|
|
2017-07-01 20:05:51 +02:00
|
|
|
Stdin io.Reader
|
|
|
|
Stdout io.Writer
|
|
|
|
Stderr io.Writer
|
|
|
|
|
2019-02-09 14:15:38 +02:00
|
|
|
Logger *logger.Logger
|
|
|
|
Compiler compiler.Compiler
|
|
|
|
Output output.Output
|
2022-02-20 00:31:27 +02:00
|
|
|
OutputStyle taskfile.Output
|
2018-02-17 20:12:41 +02:00
|
|
|
|
2022-10-02 17:49:38 +02:00
|
|
|
taskvars *taskfile.Vars
|
|
|
|
fuzzyModel *fuzzy.Model
|
2017-07-06 02:03:59 +02:00
|
|
|
|
2020-06-12 20:09:53 +02:00
|
|
|
concurrencySemaphore chan struct{}
|
|
|
|
taskCallCount map[string]*int32
|
|
|
|
mkdirMutexMap map[string]*sync.Mutex
|
2021-07-28 22:39:00 +02:00
|
|
|
executionHashes map[string]context.Context
|
|
|
|
executionHashesMutex sync.Mutex
|
2017-06-04 21:02:04 +02:00
|
|
|
}
|
2017-02-27 01:43:50 +02:00
|
|
|
|
2017-02-28 14:50:40 +02:00
|
|
|
// Run runs Task
|
2019-02-09 14:16:13 +02:00
|
|
|
func (e *Executor) Run(ctx context.Context, calls ...taskfile.Call) error {
|
2018-02-18 14:50:39 +02:00
|
|
|
// check if given tasks exist
|
2022-10-02 00:39:44 +02:00
|
|
|
for _, call := range calls {
|
|
|
|
task, err := e.GetTask(call)
|
|
|
|
if err != nil {
|
2022-01-03 19:12:18 +02:00
|
|
|
e.ListTasksWithDesc()
|
2022-10-02 00:39:44 +02:00
|
|
|
return err
|
2018-02-18 14:50:39 +02:00
|
|
|
}
|
2022-10-15 01:08:00 +02:00
|
|
|
|
2022-10-02 00:39:44 +02:00
|
|
|
if task.Internal {
|
2022-07-22 04:15:35 +02:00
|
|
|
e.ListTasksWithDesc()
|
2022-10-02 00:39:44 +02:00
|
|
|
return &taskInternalError{taskName: call.Task}
|
2022-07-22 04:15:35 +02:00
|
|
|
}
|
2018-02-18 14:50:39 +02:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:33:09 +02:00
|
|
|
if e.Summary {
|
2020-01-20 15:38:18 +02:00
|
|
|
for i, c := range calls {
|
2021-01-12 17:03:04 +02:00
|
|
|
compiledTask, err := e.FastCompiledTask(c)
|
2020-01-20 15:38:18 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
summary.PrintSpaceBetweenSummaries(e.Logger, i)
|
|
|
|
summary.PrintTask(e.Logger, compiledTask)
|
|
|
|
}
|
2019-02-24 10:24:57 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-02-18 14:50:39 +02:00
|
|
|
if e.Watch {
|
|
|
|
return e.watchTasks(calls...)
|
|
|
|
}
|
|
|
|
|
2019-11-13 22:50:04 +02:00
|
|
|
g, ctx := errgroup.WithContext(ctx)
|
2018-02-18 14:50:39 +02:00
|
|
|
for _, c := range calls {
|
2019-11-13 22:50:04 +02:00
|
|
|
c := c
|
|
|
|
if e.Parallel {
|
|
|
|
g.Go(func() error { return e.RunTask(ctx, c) })
|
|
|
|
} else {
|
|
|
|
if err := e.RunTask(ctx, c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-02-18 14:50:39 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-13 22:50:04 +02:00
|
|
|
return g.Wait()
|
2018-02-18 14:50:39 +02:00
|
|
|
}
|
|
|
|
|
2017-02-28 14:50:40 +02:00
|
|
|
// RunTask runs a task by its name
|
2018-02-17 18:22:18 +02:00
|
|
|
func (e *Executor) RunTask(ctx context.Context, call taskfile.Call) error {
|
2017-08-16 13:04:58 +02:00
|
|
|
t, err := e.CompiledTask(call)
|
2017-07-16 21:09:55 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-10-02 00:39:44 +02:00
|
|
|
if !e.Watch && atomic.AddInt32(e.taskCallCount[t.Task], 1) >= MaximumTaskCall {
|
|
|
|
return &MaximumTaskCallExceededError{task: t.Task}
|
2017-07-08 21:00:17 +02:00
|
|
|
}
|
|
|
|
|
2020-06-12 20:09:53 +02:00
|
|
|
release := e.acquireConcurrencyLimit()
|
|
|
|
defer release()
|
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
return e.startExecution(ctx, t, func(ctx context.Context) error {
|
2021-12-04 17:37:52 +02:00
|
|
|
e.Logger.VerboseErrf(logger.Magenta, `task: "%s" started`, call.Task)
|
2021-07-28 22:39:00 +02:00
|
|
|
if err := e.runDeps(ctx, t); err != nil {
|
2017-05-01 00:32:28 +02:00
|
|
|
return err
|
|
|
|
}
|
2019-05-17 22:13:47 +02:00
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
if !e.Force {
|
2021-12-04 17:37:52 +02:00
|
|
|
if err := ctx.Err(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
preCondMet, err := e.areTaskPreconditionsMet(ctx, t)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-17 22:13:47 +02:00
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
upToDate, err := e.isTaskUpToDate(ctx, t)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if upToDate && preCondMet {
|
|
|
|
if !e.Silent {
|
|
|
|
e.Logger.Errf(logger.Magenta, `task: Task "%s" is up to date`, t.Name())
|
|
|
|
}
|
|
|
|
return nil
|
2017-09-30 19:56:35 +02:00
|
|
|
}
|
2017-05-01 00:32:28 +02:00
|
|
|
}
|
2017-03-05 11:15:49 +02:00
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
if err := e.mkdir(t); err != nil {
|
|
|
|
e.Logger.Errf(logger.Red, "task: cannot make directory %q: %v", t.Dir, err)
|
|
|
|
}
|
2019-06-04 18:58:22 +02:00
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
for i := range t.Cmds {
|
2021-12-15 07:03:37 +02:00
|
|
|
if t.Cmds[i].Defer {
|
|
|
|
defer e.runDeferred(t, call, i)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
if err := e.runCommand(ctx, t, call, i); err != nil {
|
|
|
|
if err2 := e.statusOnError(t); err2 != nil {
|
|
|
|
e.Logger.VerboseErrf(logger.Yellow, "task: error cleaning status on error: %v", err2)
|
|
|
|
}
|
2018-08-05 17:53:42 +02:00
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
if execext.IsExitError(err) && t.IgnoreError {
|
|
|
|
e.Logger.VerboseErrf(logger.Yellow, "task: task error ignored: %v", err)
|
|
|
|
continue
|
|
|
|
}
|
2018-08-05 17:53:42 +02:00
|
|
|
|
2022-06-02 14:22:00 +02:00
|
|
|
return &TaskRunError{t.Task, err}
|
2021-07-28 22:39:00 +02:00
|
|
|
}
|
2017-02-27 01:43:50 +02:00
|
|
|
}
|
2021-12-04 17:37:52 +02:00
|
|
|
e.Logger.VerboseErrf(logger.Magenta, `task: "%s" finished`, call.Task)
|
2021-07-28 22:39:00 +02:00
|
|
|
return nil
|
|
|
|
})
|
2017-02-27 01:43:50 +02:00
|
|
|
}
|
2017-02-27 15:07:54 +02:00
|
|
|
|
2019-06-16 02:12:54 +02:00
|
|
|
func (e *Executor) mkdir(t *taskfile.Task) error {
|
|
|
|
if t.Dir == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex := e.mkdirMutexMap[t.Task]
|
|
|
|
mutex.Lock()
|
|
|
|
defer mutex.Unlock()
|
|
|
|
|
|
|
|
if _, err := os.Stat(t.Dir); os.IsNotExist(err) {
|
2022-08-17 19:37:58 +02:00
|
|
|
if err := os.MkdirAll(t.Dir, 0o755); err != nil {
|
2019-06-16 02:12:54 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-02-17 18:22:18 +02:00
|
|
|
func (e *Executor) runDeps(ctx context.Context, t *taskfile.Task) error {
|
2017-04-13 01:53:41 +02:00
|
|
|
g, ctx := errgroup.WithContext(ctx)
|
2017-03-16 01:19:29 +02:00
|
|
|
|
2020-06-12 20:09:53 +02:00
|
|
|
reacquire := e.releaseConcurrencyLimit()
|
|
|
|
defer reacquire()
|
|
|
|
|
2017-03-16 01:19:29 +02:00
|
|
|
for _, d := range t.Deps {
|
2017-07-02 20:30:50 +02:00
|
|
|
d := d
|
2017-03-16 01:19:29 +02:00
|
|
|
|
2017-04-13 01:39:52 +02:00
|
|
|
g.Go(func() error {
|
2019-05-17 22:13:47 +02:00
|
|
|
err := e.RunTask(ctx, taskfile.Call{Task: d.Task, Vars: d.Vars})
|
|
|
|
if err != nil {
|
2019-05-28 22:02:59 +02:00
|
|
|
return err
|
2019-05-17 22:13:47 +02:00
|
|
|
}
|
|
|
|
return nil
|
2017-04-13 01:39:52 +02:00
|
|
|
})
|
2017-03-16 01:19:29 +02:00
|
|
|
}
|
|
|
|
|
2017-07-08 20:08:44 +02:00
|
|
|
return g.Wait()
|
2017-03-16 01:19:29 +02:00
|
|
|
}
|
|
|
|
|
2021-12-15 07:03:37 +02:00
|
|
|
func (e *Executor) runDeferred(t *taskfile.Task, call taskfile.Call, i int) {
|
2022-01-04 21:56:13 +02:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
2021-12-15 07:03:37 +02:00
|
|
|
defer cancel()
|
2022-01-04 21:56:13 +02:00
|
|
|
|
2021-12-15 07:03:37 +02:00
|
|
|
if err := e.runCommand(ctx, t, call, i); err != nil {
|
|
|
|
e.Logger.VerboseErrf(logger.Yellow, `task: ignored error in deferred cmd: %s`, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-17 18:22:18 +02:00
|
|
|
func (e *Executor) runCommand(ctx context.Context, t *taskfile.Task, call taskfile.Call, i int) error {
|
2017-07-02 20:30:50 +02:00
|
|
|
cmd := t.Cmds[i]
|
2017-06-04 21:02:04 +02:00
|
|
|
|
2018-06-24 15:29:46 +02:00
|
|
|
switch {
|
|
|
|
case cmd.Task != "":
|
2020-06-12 20:09:53 +02:00
|
|
|
reacquire := e.releaseConcurrencyLimit()
|
|
|
|
defer reacquire()
|
|
|
|
|
2019-05-17 22:13:47 +02:00
|
|
|
err := e.RunTask(ctx, taskfile.Call{Task: cmd.Task, Vars: cmd.Vars})
|
|
|
|
if err != nil {
|
2019-05-28 22:02:59 +02:00
|
|
|
return err
|
2019-05-17 22:13:47 +02:00
|
|
|
}
|
|
|
|
return nil
|
2018-06-24 15:29:46 +02:00
|
|
|
case cmd.Cmd != "":
|
2019-12-08 02:44:09 +02:00
|
|
|
if e.Verbose || (!cmd.Silent && !t.Silent && !e.Taskfile.Silent && !e.Silent) {
|
2020-11-05 22:27:42 +02:00
|
|
|
e.Logger.Errf(logger.Green, "task: [%s] %s", t.Name(), cmd.Cmd)
|
2018-06-24 15:29:46 +02:00
|
|
|
}
|
2017-03-25 20:26:42 +02:00
|
|
|
|
2018-08-05 16:28:02 +02:00
|
|
|
if e.Dry {
|
2018-07-29 01:38:52 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-27 02:55:31 +02:00
|
|
|
outputWrapper := e.Output
|
2021-09-01 18:28:38 +02:00
|
|
|
if t.Interactive {
|
2021-09-27 02:55:31 +02:00
|
|
|
outputWrapper = output.Interleaved{}
|
2021-09-01 18:28:38 +02:00
|
|
|
}
|
2022-01-14 02:11:47 +02:00
|
|
|
vars, err := e.Compiler.FastGetVariables(t, call)
|
|
|
|
outputTemplater := &templater.Templater{Vars: vars, RemoveNoValue: true}
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("task: failed to get variables: %w", err)
|
|
|
|
}
|
2022-07-06 15:43:32 +02:00
|
|
|
stdOut, stdErr, close := outputWrapper.WrapWriter(e.Stdout, e.Stderr, t.Prefix, outputTemplater)
|
2019-04-21 21:55:47 +02:00
|
|
|
defer func() {
|
2022-07-06 15:43:32 +02:00
|
|
|
if err := close(); err != nil {
|
|
|
|
e.Logger.Errf(logger.Red, "task: unable to close writter: %v", err)
|
2019-04-21 21:55:47 +02:00
|
|
|
}
|
|
|
|
}()
|
2018-06-24 15:29:46 +02:00
|
|
|
|
2022-01-14 02:11:47 +02:00
|
|
|
err = execext.RunCommand(ctx, &execext.RunCommandOptions{
|
2018-08-05 17:40:11 +02:00
|
|
|
Command: cmd.Cmd,
|
|
|
|
Dir: t.Dir,
|
|
|
|
Env: getEnviron(t),
|
|
|
|
Stdin: e.Stdin,
|
|
|
|
Stdout: stdOut,
|
|
|
|
Stderr: stdErr,
|
2018-06-24 15:29:46 +02:00
|
|
|
})
|
2018-09-01 16:02:23 +02:00
|
|
|
if execext.IsExitError(err) && cmd.IgnoreError {
|
2020-11-05 22:27:42 +02:00
|
|
|
e.Logger.VerboseErrf(logger.Yellow, "task: [%s] command error ignored: %v", t.Name(), err)
|
2018-08-05 17:40:11 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
2018-06-24 15:29:46 +02:00
|
|
|
default:
|
|
|
|
return nil
|
2017-09-16 19:05:07 +02:00
|
|
|
}
|
2017-02-27 15:07:54 +02:00
|
|
|
}
|
2017-04-22 20:46:29 +02:00
|
|
|
|
2018-02-17 18:22:18 +02:00
|
|
|
func getEnviron(t *taskfile.Task) []string {
|
2017-04-22 20:46:29 +02:00
|
|
|
if t.Env == nil {
|
2017-07-16 21:09:55 +02:00
|
|
|
return nil
|
2017-04-22 20:46:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-02 16:05:40 +02:00
|
|
|
environ := os.Environ()
|
2021-01-12 16:32:49 +02:00
|
|
|
|
2019-08-25 22:16:59 +02:00
|
|
|
for k, v := range t.Env.ToCacheMap() {
|
2021-01-12 16:32:49 +02:00
|
|
|
str, isString := v.(string)
|
|
|
|
if !isString {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, alreadySet := os.LookupEnv(k); alreadySet {
|
|
|
|
continue
|
2019-09-14 22:54:41 +02:00
|
|
|
}
|
2021-01-12 16:32:49 +02:00
|
|
|
|
|
|
|
environ = append(environ, fmt.Sprintf("%s=%s", k, str))
|
2017-04-22 20:46:29 +02:00
|
|
|
}
|
2021-01-12 16:32:49 +02:00
|
|
|
|
2019-01-02 16:05:40 +02:00
|
|
|
return environ
|
2017-04-22 20:46:29 +02:00
|
|
|
}
|
2020-08-17 21:25:17 +02:00
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
func (e *Executor) startExecution(ctx context.Context, t *taskfile.Task, execute func(ctx context.Context) error) error {
|
2020-08-17 21:25:17 +02:00
|
|
|
h, err := e.GetHash(t)
|
|
|
|
if err != nil {
|
2021-07-28 22:39:00 +02:00
|
|
|
return err
|
2020-08-17 21:25:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if h == "" {
|
2021-07-28 22:39:00 +02:00
|
|
|
return execute(ctx)
|
2020-08-17 21:25:17 +02:00
|
|
|
}
|
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
e.executionHashesMutex.Lock()
|
|
|
|
otherExecutionCtx, ok := e.executionHashes[h]
|
2021-08-01 01:29:59 +02:00
|
|
|
|
2020-08-17 21:25:17 +02:00
|
|
|
if ok {
|
2021-08-01 01:29:59 +02:00
|
|
|
e.executionHashesMutex.Unlock()
|
|
|
|
e.Logger.VerboseErrf(logger.Magenta, "task: skipping execution of task: %s", h)
|
2021-07-28 22:39:00 +02:00
|
|
|
<-otherExecutionCtx.Done()
|
|
|
|
return nil
|
2020-08-17 21:25:17 +02:00
|
|
|
}
|
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
2021-08-01 01:29:59 +02:00
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
e.executionHashes[h] = ctx
|
2021-08-01 01:29:59 +02:00
|
|
|
e.executionHashesMutex.Unlock()
|
|
|
|
|
2021-07-28 22:39:00 +02:00
|
|
|
return execute(ctx)
|
2020-08-17 21:25:17 +02:00
|
|
|
}
|
2022-10-02 00:39:44 +02:00
|
|
|
|
|
|
|
// GetTask will return the task with the name matching the given call from the taskfile.
|
|
|
|
// If no task is found, it will search for tasks with a matching alias.
|
|
|
|
// If multiple tasks contain the same alias or no matches are found an error is returned.
|
|
|
|
func (e *Executor) GetTask(call taskfile.Call) (*taskfile.Task, error) {
|
|
|
|
// Search for a matching task
|
|
|
|
matchingTask, ok := e.Taskfile.Tasks[call.Task]
|
|
|
|
if ok {
|
|
|
|
return matchingTask, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// If didn't find one, search for a task with a matching alias
|
|
|
|
var aliasedTasks []string
|
|
|
|
for _, task := range e.Taskfile.Tasks {
|
|
|
|
if slices.Contains(task.Aliases, call.Task) {
|
|
|
|
aliasedTasks = append(aliasedTasks, task.Task)
|
|
|
|
matchingTask = task
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If we found multiple tasks
|
|
|
|
if len(aliasedTasks) > 1 {
|
|
|
|
return nil, &multipleTasksWithAliasError{
|
|
|
|
aliasName: call.Task,
|
|
|
|
taskNames: aliasedTasks,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If we found no tasks
|
|
|
|
if len(aliasedTasks) == 0 {
|
2022-10-15 01:08:00 +02:00
|
|
|
didYouMean := ""
|
|
|
|
if e.fuzzyModel != nil {
|
|
|
|
didYouMean = e.fuzzyModel.SpellCheck(call.Task)
|
|
|
|
}
|
2022-10-02 00:39:44 +02:00
|
|
|
return nil, &taskNotFoundError{
|
2022-10-15 01:08:00 +02:00
|
|
|
taskName: call.Task,
|
|
|
|
didYouMean: didYouMean,
|
2022-10-02 00:39:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return matchingTask, nil
|
|
|
|
}
|