Commit 347dc18
committed
Fix lint-timezone find pattern to match cmd/main.go
The glob pattern '*/cmd/*/main.go' requires a subdirectory between cmd/
and main.go, so it never matches ./cmd/main.go (the actual entrypoint).
Changed to '*/cmd/*' which, combined with -name main.go, correctly
matches main.go at any depth under cmd/.1 parent 0a1e795 commit 347dc18
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| |||
0 commit comments