From f23114d511ab152e2f3040c5840908001f81100a Mon Sep 17 00:00:00 2001 From: Major- Date: Sat, 16 Sep 2017 23:11:22 +0100 Subject: [PATCH] Fix plugin processing on windows --- settings.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index 39b15043..25f8e47f 100644 --- a/settings.gradle +++ b/settings.gradle @@ -27,7 +27,7 @@ def processPluginDir(Path pluginDir) { } def relativePath = pluginDir.relativize(parentPath) - def pluginName = relativePath.toString().replaceAll(File.separator, ":") + def pluginName = relativePath.toString().replace(File.separator, ":") include ":game:plugin:$pluginName" }