From 7901cce831caa573af85aae75c21378390dd2405 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 22 Nov 2025 18:09:20 -0300 Subject: [PATCH] chore: run `gofumpt` --- internal/execext/exec.go | 2 +- task.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/execext/exec.go b/internal/execext/exec.go index bfbb779f..c93d0c42 100644 --- a/internal/execext/exec.go +++ b/internal/execext/exec.go @@ -147,7 +147,7 @@ func execHandlers() (handlers []func(next interp.ExecHandlerFunc) interp.ExecHan if useGoCoreUtils { handlers = append(handlers, coreutils.ExecHandler) } - return + return handlers } func openHandler(ctx context.Context, path string, flag int, perm os.FileMode) (io.ReadWriteCloser, error) { diff --git a/task.go b/task.go index f339fbc3..79bc36ac 100644 --- a/task.go +++ b/task.go @@ -112,7 +112,7 @@ func (e *Executor) splitRegularAndWatchCalls(calls ...*Call) (regularCalls []*Ca regularCalls = append(regularCalls, c) } } - return + return regularCalls, watchCalls, err } // RunTask runs a task by its name