From 1fc0162fe9fcbd857755fcf6e86203b7802fdb92 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 22 Aug 2018 10:23:15 -0500 Subject: [PATCH] Fix settings.gradle on Windows Fixes: gh-1167 --- settings.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index 328071d3..06090ae9 100644 --- a/settings.gradle +++ b/settings.gradle @@ -10,7 +10,7 @@ String rootDirPath = rootDir.absolutePath + File.separator buildFiles.each { File buildFile -> if (buildFile.name == 'build.gradle') { String buildFilePath = buildFile.parentFile.absolutePath - String projectPath = buildFilePath.replace(rootDirPath, '').replaceAll(File.separator, ':') + String projectPath = buildFilePath.replace(rootDirPath, '').replace(File.separator, ':') include projectPath } else {