Skip to content

Commit

Permalink
exclude pycache from task input key (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
devPalacio authored Apr 29, 2024
1 parent d5e243d commit 00269a4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,12 @@ abstract class StoneTask : DefaultTask() {

init {
stoneFiles.setFrom(stoneDir.asFileTree.matching {
exclude("**/__pycache__/**")
include("**/*.py")
})

specFiles.setFrom(specDir.asFileTree.matching {
exclude("**/__pycache__/**")
include("**/*.stone")
})
}
Expand Down

0 comments on commit 00269a4

Please sign in to comment.