Gradle - updated gradle to run when not using standard repo names -

review fixes
This commit is contained in:
dragonmacher
2019-08-13 18:31:43 -04:00
parent e2ce041799
commit 68931f01d6
+1 -7
View File
@@ -41,13 +41,7 @@ ext.includeProjectNamed = { name, dirName, path, mustExist ->
**************************************************************************************/
ext.includeProjects = { path ->
String fullPath = path
if (!fullPath.startsWith(File.separator)) {
fullPath = rootProject.projectDir.absolutePath + "/" + path
}
FileTree fileTree = fileTree(fullPath) {
FileTree fileTree = fileTree(rootProject.projectDir.absolutePath + "/" + path) {
include '*/build.gradle'
}