This commit is contained in:
Brian Fopiano
2022-09-11 17:57:08 -07:00
parent 3d0c0a11ed
commit da777da476

View File

@@ -298,7 +298,7 @@ def registerCustomOutputTask(name, path) {
from(new File(buildDir, "Iris-" + version + ".jar"))
into(file(path))
rename { String fileName ->
fileName.replace("Iris-" + version + ".jar", "Iris- "+ version +".jar")
fileName.replace("Iris-" + version + ".jar", "Iris.jar")
}
}
}
@@ -315,7 +315,7 @@ def registerCustomOutputTaskUnix(name, path) {
from(new File(buildDir, "Iris-" + version + ".jar"))
into(file(path))
rename { String fileName ->
fileName.replace("Iris-" + version + ".jar", "Iris- "+ version +".jar")
fileName.replace("Iris-" + version + ".jar", "Iris.jar")
}
}
}