Skip to content

Commit

Permalink
Only ignore the build directory in the same directory as .gitignore f…
Browse files Browse the repository at this point in the history
…or Gradle

If you have a Java package with `build` in it, the current version will always ignore files in that directory.
This change makes it so only the root "build" directory is ignored.

I believe that this assumes .gitignore is in the root of a project.
  • Loading branch information
mkobit committed Jun 24, 2016
1 parent f93202c commit b89498a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gradle.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.gradle
build/
/build/

# Ignore Gradle GUI config
gradle-app.setting
Expand Down

0 comments on commit b89498a

Please sign in to comment.