From 789dff8ad6bfcd6e644020b91f9f6c11ee8abba9 Mon Sep 17 00:00:00 2001 From: SuperMonster003 Date: Mon, 2 Dec 2024 16:07:38 +0800 Subject: [PATCH] =?UTF-8?q?6.6.0=20-=20Fix2=20-=20=E4=BF=AE=E5=A4=8D=20Tem?= =?UTF-8?q?urin=20=E5=B9=B3=E5=8F=B0=E6=97=A0=E6=B3=95=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libs/utils.build.gradle | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libs/utils.build.gradle b/libs/utils.build.gradle index ad93b938..a0c750af 100644 --- a/libs/utils.build.gradle +++ b/libs/utils.build.gradle @@ -134,17 +134,21 @@ class Utils { } if (shouldExtract) { + printExtractInfo() try { - printExtractInfo() extractCacheFile() - generateMd5File(cacheFile) } catch (Exception e) { + println("\n") // two line breaks println("Cache file was deleted as there is an error during extraction") println("Cache file: ${cacheFile.absolutePath}") cacheFile.delete() + if (e.message != null) { + println("Error message: $e.message") + } println() throw e } + generateMd5File(cacheFile) } }