Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe
Commits:
-
292934b2
by Tony Chemit at 2021-04-27T12:58:52+02:00
1 changed file:
Changes:
| ... | ... | @@ -188,7 +188,7 @@ public class FeedBackBuilder { |
| 188 | 188 |
}
|
| 189 | 189 |
|
| 190 | 190 |
private void copyDirectoryToZip(Path rootFile, ZipOutputStream zipOutputStream) throws IOException {
|
| 191 |
- copyDirectoryToZip(rootFile, t -> true, zipOutputStream);
|
|
| 191 |
+ copyDirectoryToZip(rootFile, t -> !t.getParent().getParent().toFile().getName().equals("shapeFiles"), zipOutputStream);
|
|
| 192 | 192 |
}
|
| 193 | 193 |
|
| 194 | 194 |
private void copyDirectoryToZip(Path rootFile, Predicate<Path> predicate, ZipOutputStream zipOutputStream) throws IOException {
|