Merge pull request #5630 from iRevive/delete-metainf-folder

Delete META-INF folder after remote cache pull
This commit is contained in:
eugene yokota 2020-06-17 16:36:24 -04:00 committed by GitHub
commit cb4ec9703a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"