Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe

Commits:

1 changed file:

Changes:

  • client/core/src/main/java/fr/ird/observe/client/feedback/FeedBackBuilder.java
    ... ... @@ -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 {