Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Commit

Permalink
Added .idea directory to base names skipped by Builder's Run() method (
Browse files Browse the repository at this point in the history
  • Loading branch information
ckaik authored and markbates committed Apr 9, 2018
1 parent 3402a16 commit 1018a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (b *Builder) Run() error {
}

base := filepath.Base(path)
if base == ".git" || base == "vendor" || base == "node_modules" {
if base == ".git" || base == "vendor" || base == "node_modules" || base == ".idea" {
return filepath.SkipDir
}

Expand Down

0 comments on commit 1018a98

Please sign in to comment.