Эх сурвалжийг харах

更改 文件过滤方法,适应windows

zhoulc 3 жил өмнө
parent
commit
50b6a4cb5e

+ 2 - 1
yudao-server/src/test/java/cn/iocoder/yudao/ProjectReactor.java

@@ -64,7 +64,8 @@ public class ProjectReactor {
                         && !file.getPath().contains("\\.idea\\")
                         && !file.getPath().contains("\\.git\\")
                         && !file.getPath().contains("\\.github\\")
-                        && !file.getPath().contains("\\dist\\"))
+                        && !file.getPath().contains("\\dist\\")
+                        && !file.getPath().contains(".iml"))
                 .collect(Collectors.toList());
         return files;
     }