Fix non-root walkFileSystems, part III

This commit is contained in:
Juuxel
2020-11-30 15:43:54 +02:00
parent 722d0fe94a
commit 8c2b2033d9

View File

@@ -363,7 +363,7 @@ public class MinecraftProvider extends DependencyProvider {
try {
Path relativeSource = root ? it : dir.relativize(it);
Path targetPath = targetFs.getPath(relativeSource.toString());
action.accept(sourceFs, targetFs, relativeSource, targetPath);
action.accept(sourceFs, targetFs, it, targetPath);
} catch (IOException e) {
throw new UncheckedIOException(e);
}