Skip to content

Commit 7901cce

Browse files
committed
chore: run gofumpt
1 parent c7b4f26 commit 7901cce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/execext/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ func execHandlers() (handlers []func(next interp.ExecHandlerFunc) interp.ExecHan
147147
if useGoCoreUtils {
148148
handlers = append(handlers, coreutils.ExecHandler)
149149
}
150-
return
150+
return handlers
151151
}
152152

153153
func openHandler(ctx context.Context, path string, flag int, perm os.FileMode) (io.ReadWriteCloser, error) {

task.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func (e *Executor) splitRegularAndWatchCalls(calls ...*Call) (regularCalls []*Ca
112112
regularCalls = append(regularCalls, c)
113113
}
114114
}
115-
return
115+
return regularCalls, watchCalls, err
116116
}
117117

118118
// RunTask runs a task by its name

0 commit comments

Comments
 (0)