Skip to content

Commit

Permalink
added eclipse output dirs bin/main and bin/test to gitignore, and ign…
Browse files Browse the repository at this point in the history
…ore them when creating tar file
  • Loading branch information
sfeuerhahn committed Jun 10, 2020
1 parent cbac75d commit 9fc7d23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ out/
.project
.classpath
.metadata/
**/bin/main/
**/bin/test/
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ tasks.register<Tar>("tar") {
include("LICENSE.txt")
include("doc/**")
include("bin/**")
exclude("bin/main/")
exclude("bin/test/")
include("gradle/wrapper/**")
include("gradlew")
include("gradlew.bat")
Expand Down

0 comments on commit 9fc7d23

Please sign in to comment.