Skip to content

Commit 763dcdf

Browse files
committed
chore: ignore the tooling directory
Signed-off-by: Andres Taylor <[email protected]>
1 parent be644a9 commit 763dcdf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

go/tools/releases/releases.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ func getDirs(curDir dir) (dir, error) {
113113

114114
for _, entry := range entries {
115115
if entry.IsDir() {
116+
// Skip the tooling directory which contains automation tools
117+
if entry.Name() == "tooling" {
118+
continue
119+
}
116120
subDir, err := getDirs(dir{
117121
Name: entry.Name(),
118122
Path: path.Join(curDir.Path, entry.Name()),

0 commit comments

Comments
 (0)