We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7386998 commit 8eb33d6Copy full SHA for 8eb33d6
1 file changed
minecraft-codev-remapper/src/main/kotlin/net/msrandom/minecraftcodev/remapper/JarRemapper.kt
@@ -72,7 +72,7 @@ object JarRemapper {
72
OutputConsumerPath.Builder(output).build().use {
73
val classpathFiles = classpath.map(File::toPath).filter {
74
// TODO This is not a good way of detecting directories
75
- it.toString().endsWith(".jar") || it.exists()
+ '.' in it.last().toString() || it.exists()
76
}
77
78
it.addNonClassFiles(input, NonClassCopyMode.FIX_META_INF, remapper)
0 commit comments