fix gradle 4.2 warning on windows (#937)

This commit is contained in:
Mike Sinkovsky
2017-10-13 14:54:22 +05:00
committed by Nikolay Igotti
parent 83f798d5c4
commit f4c90e1a86
+1 -1
View File
@@ -117,7 +117,7 @@ Set<RunExternalTestGroup> createExternalTests(File testRoot, Closure taskConfigu
}
def taskDirectory = project.relativePath(it)
def taskName = taskDirectory.replaceAll("[-/]", '_')
def taskName = taskDirectory.replaceAll("[-/\\\\]", '_')
def task = (RunExternalTestGroup)project.task("$taskName", type: RunExternalTestGroup){
groupDirectory = "$taskDirectory"