Explorar o código

Only ignore the build directory in the same directory as .gitignore for 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.
Mike Kobit %!s(int64=8) %!d(string=hai) anos
pai
achega
b89498a467
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Gradle.gitignore

+ 1 - 1
Gradle.gitignore

@@ -1,5 +1,5 @@
 .gradle
-build/
+/build/
 
 # Ignore Gradle GUI config
 gradle-app.setting