Skip to content

Commit

Permalink
Fix common repack manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Jan 16, 2024
1 parent fb81e15 commit ed76bb0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cloud-fabric/common-repack/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ dependencies {
tasks {
val common = project(":cloud-minecraft-modded-common")
jar {
from(zipTree(common.tasks.jar.flatMap { it.archiveFile }))
from(zipTree(common.tasks.jar.flatMap { it.archiveFile })) {
exclude("META-INF/MANIFEST.MF")
}
manifest {
attributes("Fabric-Loom-Remap" to true)
}
}
sourcesJar {
from(zipTree(common.tasks.sourcesJar.flatMap { it.archiveFile }))
Expand Down

0 comments on commit ed76bb0

Please sign in to comment.