From f4c90e1a86754bcb1a19c3a365764e2cab542c7a Mon Sep 17 00:00:00 2001 From: Mike Sinkovsky Date: Fri, 13 Oct 2017 14:54:22 +0500 Subject: [PATCH] fix gradle 4.2 warning on windows (#937) --- backend.native/tests/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 9d0becd9e97..a5981ff92f4 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -117,7 +117,7 @@ Set 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"