Skip to content

Commit

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

private File privateSkipFile = null

File getSkipFile() {
if (privateSkipFile == null) {
privateSkipFile = project.file(new File(destFile, "${cacheFileName}.skip"))
}
privateSkipFile
project.file(new File(destFile, "${cacheFileName}.skip"))
}

private File privateTempOutFile = null

File getTempOutFile() {
if (privateTempOutFile == null) {
privateTempOutFile = project.file(new File(destFile, "temp-extracted"))
}
privateTempOutFile
project.file(new File(destFile, "temp-extracted"))
}

LibDeployer(Project project, String name, String downloadUrl) {
Expand Down

0 comments on commit 6a46964

Please sign in to comment.