mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Fix fabric output jar
This commit is contained in:
parent
58863c22e8
commit
98e29f634f
@ -99,7 +99,7 @@ tasks.register<RemapJarTask>("remapShadowJar") {
|
||||
val shadowJar = tasks.getByName<ShadowJar>("shadowJar")
|
||||
dependsOn(shadowJar)
|
||||
setInput(shadowJar.archiveFile)
|
||||
setOutput(shadowJar.archiveFile.get().asFile.getAbsolutePath().replaceFirst("-dev\\.jar$", ".jar"))
|
||||
setOutput(shadowJar.archiveFile.get().asFile.absolutePath.replace(Regex("-dev\\.jar$"), ".jar"))
|
||||
}
|
||||
|
||||
tasks.named("assemble").configure {
|
||||
|
Loading…
Reference in New Issue
Block a user