Skip to content

Commit 084511f

Browse files
committed
update Go to latest version (1.25) so that we have access to fs.SkipAll
We need fs.SkipAll (introduced in 1.20) so that we can skip WalkDir entirely instead of just skipping the current directory. This is needed when we encounter the "too many open files" error.
1 parent 50f4429 commit 084511f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
module github.com/bokwoon95/wgo
22

3-
go 1.16
3+
go 1.25
44

55
require (
66
github.com/fsnotify/fsnotify v1.6.0
77
github.com/google/go-cmp v0.5.9
88
)
9+
10+
require golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect

0 commit comments

Comments
 (0)