Fix settings.gradle on Windows

Fixes: gh-5724
This commit is contained in:
Rob Winch 2018-08-22 10:21:41 -05:00
parent d7bd5c0acc
commit 4ddaac3b8e
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ buildFiles.each { File buildFile ->
boolean isDefaultName = 'build.gradle'.equals(buildFile.name) boolean isDefaultName = 'build.gradle'.equals(buildFile.name)
if(isDefaultName) { if(isDefaultName) {
String buildFilePath = buildFile.parentFile.absolutePath String buildFilePath = buildFile.parentFile.absolutePath
String projectPath = buildFilePath.replace(rootDirPath, '').replaceAll(File.separator, ':') String projectPath = buildFilePath.replace(rootDirPath, '').replace(File.separator, ':')
include projectPath include projectPath
} else { } else {
String projectName = buildFile.name.replace('.gradle', ''); String projectName = buildFile.name.replace('.gradle', '');