fix iris task having the wrong source path

This commit is contained in:
BuildTools
2023-10-23 16:11:40 +02:00
parent e1c7f38bb8
commit fb2221fa8d

View File

@@ -295,7 +295,7 @@ if (JavaVersion.current().toString() != "17") {
task iris(type: Copy) {
group "iris"
from new File(buildDir, "Iris-${version}.jar")
from new File(buildDir, "libs/Iris-${version}.jar")
into buildDir
dependsOn(build)
}