flyrain commented on code in PR #1589: URL: https://github.com/apache/polaris/pull/1589#discussion_r2103540988
########## quarkus/admin/build.gradle.kts: ########## @@ -108,17 +102,10 @@ val quarkusBuild = tasks.named<QuarkusBuild>("quarkusBuild") val distTar = tasks.named<Tar>("distTar") { dependsOn(quarkusBuild) - // Trigger resolution (and build) of the run-script artifact - inputs.files(runScript) compression = Compression.GZIP } -val distZip = - tasks.named<Zip>("distZip") { - dependsOn(quarkusBuild) - // Trigger resolution (and build) of the run-script artifact - inputs.files(runScript) - } +val distZip = tasks.named<Zip>("distZip") { dependsOn(quarkusBuild) } Review Comment: We shouldn't need it anymore, neither does the tarball. Let me remove it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org