[FIX] Ошибка на MAC

This commit is contained in:
Zaxar163 2019-10-23 15:23:50 +02:00
parent 89c412cda1
commit 600c65d2f2
No known key found for this signature in database
GPG key ID: 1FE4F2E1F053831B
2 changed files with 2 additions and 2 deletions

View file

@ -537,7 +537,7 @@ private static LinkedList<Path> resolveClassPathList(Path clientDir, String... c
private static Stream<Path> resolveClassPathStream(Path clientDir, String... classPath) throws IOException {
Stream.Builder<Path> builder = Stream.builder();
for (String classPathEntry : classPath) {
Path path = clientDir.resolve(IOHelper.toPath(classPathEntry));
Path path = clientDir.resolve(IOHelper.toPath(classPathEntry.replace(IOHelper.CROSS_SEPARATOR, IOHelper.PLATFORM_SEPARATOR)));
if (IOHelper.isDir(path)) { // Recursive walking and adding
IOHelper.walk(path, new ClassPathFileVisitor(builder), false);
continue;

@ -1 +1 @@
Subproject commit 6f008f595975887b6a1366cb444b82b339e3afad
Subproject commit 8bd7ee839ad17cc75ff26653189f6cb995260989