diff options
author | Mike Kobit <mkobit@gmail.com> | 2016-06-24 12:26:18 -0500 |
---|---|---|
committer | Mike Kobit <mkobit@gmail.com> | 2016-06-24 12:30:38 -0500 |
commit | b89498a4674a21f2f4feb3994e82acc58d747236 (patch) | |
tree | 575dce6c5de79394b6fe04288839a3913a40aac6 /Gradle.gitignore | |
parent | f93202c42e947f3be10b3bd6912b48e30e7e9781 (diff) | |
download | gitignore-b89498a4674a21f2f4feb3994e82acc58d747236.tar.gz gitignore-b89498a4674a21f2f4feb3994e82acc58d747236.zip |
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.
Diffstat (limited to 'Gradle.gitignore')
-rw-r--r-- | Gradle.gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gradle.gitignore b/Gradle.gitignore index 77617a15..a1fc39c0 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -1,5 +1,5 @@ .gradle -build/ +/build/ # Ignore Gradle GUI config gradle-app.setting |