Commit c9519894 authored by Phillip Webb's avatar Phillip Webb

Ignore failure to close zip errors

Issue: Issue: #53129653
parent fe90df3a
...@@ -146,7 +146,12 @@ public class Repackager { ...@@ -146,7 +146,12 @@ public class Repackager {
writer.writeLoaderClasses(); writer.writeLoaderClasses();
} }
finally { finally {
writer.close(); try {
writer.close();
}
catch (Exception ex) {
// Ignore
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment