mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
use path instead of filename
This commit is contained in:
+2
-2
@@ -70,8 +70,8 @@ public class PyEduPluginConfigurator implements EduPluginConfigurator {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean excludeFromArchive(@NotNull String name) {
|
||||
return name.contains("__pycache__") || name.endsWith(".pyc");
|
||||
public boolean excludeFromArchive(@NotNull String path) {
|
||||
return path.contains("__pycache__") || path.endsWith(".pyc");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user