9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-30 12:29:20 +00:00

Merge remote-tracking branch 'origin/Development' into Development

This commit is contained in:
cyberpwn
2022-09-11 20:59:04 -04:00

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")
}
}
}