Directory name equals with module name of endorsed library (#3322)

This commit is contained in:
LepilkinaElena
2019-09-09 14:07:14 +03:00
committed by GitHub
parent 93a83d520a
commit bc36fc22f6
+1 -1
View File
@@ -28,7 +28,7 @@ targetList.each { target ->
endorsedLibrariesList.each { library ->
from(project("$library").file("build/${target}${ toTaskName(library) }")) {
include('**')
into("$library")
into("${library.replaceAll("\\.", "-")}")
}
}
}