Force mapJar to always re-run

This commit is contained in:
modmuss50 2018-10-27 15:37:37 +01:00
parent 7ee98c2d41
commit c780c54d6b
1 changed files with 5 additions and 0 deletions

View File

@ -299,6 +299,11 @@ task mapJar(dependsOn: [downloadMcLibs, build]) {
inputs.files downloadMcLibs.outputs.files.files
outputs.file(mappedFile)
//Force the task to always run
outputs.upToDateWhen {
return true
}
doLast {
logger.lifecycle(":mapping minecraft")