Skip to content

Commit

Permalink
6.6.0 - Fix5 - 修复 Temurin 平台无法构建项目
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperMonster003 committed Dec 2, 2024
1 parent 6a46964 commit c30394f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions libs/utils.build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ class Utils {
}

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()
this.destDir = destDir
this.destFile = destFile
Expand Down Expand Up @@ -150,7 +154,6 @@ class Utils {

void clean() {
project.delete skipFile
println(skipFile)
project.delete tempOutFile
deleteDestAccordingToSrc()
deleteCacheAccordingToMd5()
Expand Down

0 comments on commit c30394f

Please sign in to comment.