From 9c8c32fea57a9539241900c93cce2d65b62aa418 Mon Sep 17 00:00:00 2001 From: Darwin Bautista Date: Thu, 7 May 2015 13:39:08 +0800 Subject: [PATCH] Android: Remove redundant pattern for matching build directories build/ already matches all directories named 'build' in the repository, regardless of level. Gradle can have more than two levels of project nesting. However, /*/build/ matches only the 'build' directories of 2nd-level projects. Thus, the first pattern is more appropriate than the second. --- Android.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index ccf2efe0..9068cd01 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -15,7 +15,6 @@ gen/ # Gradle files .gradle/ build/ -/*/build/ # Local configuration file (sdk path, etc) local.properties