Merge pull request #4994 from kolyshkin/gofumpt-extra

Enable gofumpt extra rules
This commit is contained in:
Akihiro Suda
2025-11-28 09:30:57 +09:00
committed by GitHub
16 changed files with 19 additions and 16 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ func Dup3(oldfd, newfd, flags int) error {
}
// Exec wraps [unix.Exec].
func Exec(cmd string, args []string, env []string) error {
func Exec(cmd string, args, env []string) error {
err := retryOnEINTR(func() error {
return unix.Exec(cmd, args, env)
})