1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Don't throw if can't overwrite (Windows only).

This commit is contained in:
Cedric Beust 2015-12-10 23:11:24 -08:00
parent 103b5fabdf
commit c5f2368a29

View file

@ -239,7 +239,6 @@ public class Main {
Files.copy(zipFile.getInputStream(entry), entryPath, StandardCopyOption.REPLACE_EXISTING); Files.copy(zipFile.getInputStream(entry), entryPath, StandardCopyOption.REPLACE_EXISTING);
} catch (FileSystemException ex) { } catch (FileSystemException ex) {
log(2, "Couldn't copy to " + entryPath); log(2, "Couldn't copy to " + entryPath);
throw new IOException(ex);
} }
} }
} }