Delete META-INF folder after remote cache pull

This commit is contained in:
Maksim Ochenashko 2020-06-17 13:01:47 +03:00
parent 87e57b5390
commit 49e7d71cbc
1 changed files with 3 additions and 1 deletions

View File

@ -217,10 +217,12 @@ object RemoteCache {
): Unit = {
IO.delete(output)
IO.unzip(jar, output)
val expandedAnalysis = output / "META-INF" / "inc_compile.zip"
val metaDir = output / "META-INF"
val expandedAnalysis = metaDir / "inc_compile.zip"
if (expandedAnalysis.exists) {
IO.move(expandedAnalysis, analysisFile)
}
IO.delete(metaDir)
// testResult match {
// case Some(r) =>
// val expandedTestResult = output / "META-INF" / "succeeded_tests"