Fix plugin processing on windows

This commit is contained in:
Major-
2017-09-16 23:11:22 +01:00
parent 68710cae47
commit f23114d511
+1 -1
View File
@@ -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"
}