6.6.0 - Fix5 - 修复 Temurin 平台无法构建项目
This commit is contained in:
@@ -108,7 +108,11 @@ class Utils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
LibDeployer setDestDir(String destDir) {
|
LibDeployer setDestDir(String destDir) {
|
||||||
def destFile = project.file(destDir)
|
def destFile = destDir.matches("[/\\\\].+") ? project.file(destDir.substring(1)) : project.file(destDir)
|
||||||
|
println(destDir.matches("[/\\\\].+"))
|
||||||
|
println(project.file(destDir))
|
||||||
|
println(project.file(destDir.substring(1)))
|
||||||
|
println(destFile.absolutePath)
|
||||||
destFile.mkdirs()
|
destFile.mkdirs()
|
||||||
this.destDir = destDir
|
this.destDir = destDir
|
||||||
this.destFile = destFile
|
this.destFile = destFile
|
||||||
@@ -150,7 +154,6 @@ class Utils {
|
|||||||
|
|
||||||
void clean() {
|
void clean() {
|
||||||
project.delete skipFile
|
project.delete skipFile
|
||||||
println(skipFile)
|
|
||||||
project.delete tempOutFile
|
project.delete tempOutFile
|
||||||
deleteDestAccordingToSrc()
|
deleteDestAccordingToSrc()
|
||||||
deleteCacheAccordingToMd5()
|
deleteCacheAccordingToMd5()
|
||||||
|
|||||||
Reference in New Issue
Block a user