Revert "helping with version Nomners"

This reverts commit 0765c21cef.
This commit is contained in:
Brian Fopiano
2022-08-13 03:20:42 -07:00
committed by DanMB
parent a0db94d84f
commit 05a26ff8b2
+2 -2
View File
@@ -300,7 +300,7 @@ def registerCustomOutputTask(name, path) {
from(new File(buildDir, "Iris-" + version + ".jar")) from(new File(buildDir, "Iris-" + version + ".jar"))
into(file(path)) into(file(path))
rename { String fileName -> rename { String fileName ->
fileName.replace("Iris-" + version + ".jar", "Iris-" + version + ".jar") fileName.replace("Iris-" + version + ".jar", "Iris.jar")
} }
} }
} }
@@ -317,7 +317,7 @@ def registerCustomOutputTaskUnix(name, path) {
from(new File(buildDir, "Iris-" + version + ".jar")) from(new File(buildDir, "Iris-" + version + ".jar"))
into(file(path)) into(file(path))
rename { String fileName -> rename { String fileName ->
fileName.replace("Iris-" + version + ".jar", "Iris-" + version + ".jar") fileName.replace("Iris-" + version + ".jar", "Iris.jar")
} }
} }
} }