Skip to content

Commit

Permalink
It seems to mistake the second arg as the wrong type, so split them up
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Jan 7, 2024
1 parent b14f68c commit 6b9873e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions worldedit-mod/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ tasks.register<Jar>("jar") {
}
manifest {
from(
{ zipTree({remapFabric.get().archiveFile}).single{ it.name == "MANIFEST.MF"} },
{ zipTree({project(":worldedit-forge").tasks.getByName("shadowJar").outputs.files.singleFile}).single{ it.name == "MANIFEST.MF"} }
{ zipTree({remapFabric.get().archiveFile}).single{ it.name == "MANIFEST.MF"} }
)
from(
{ zipTree({project(":worldedit-forge").tasks.getByName("jar").outputs.files.singleFile}).single{ it.name == "MANIFEST.MF"} }
)
}

Expand Down

0 comments on commit 6b9873e

Please sign in to comment.