replase "/" with File.separator

This commit is contained in:
InsanusMokrassar 2020-08-12 10:14:50 +06:00
parent c3cf3f161a
commit 03e0728fdf

View File

@ -30,5 +30,5 @@ String[] includes = [
includes.each {
include it
ProjectDescriptor project = project(it)
project.name = rootProject.name + project.projectDir.absolutePath.replace(rootDir.absolutePath, "").replace("/", ".")
project.name = rootProject.name + project.projectDir.absolutePath.replace(rootDir.absolutePath, "").replace(File.separator, ".")
}