flyrain commented on code in PR #2530:
URL: https://github.com/apache/polaris/pull/2530#discussion_r2335253099
##########
runtime/distribution/build.gradle.kts:
##########
@@ -71,6 +71,17 @@ distributions {
into("bin") {
from("bin/server")
from("bin/admin")
+ from("${rootDir}/polaris")
+ }
+
+ into("bin/client") {
+ from("${rootDir}/client/python") {
+ include("**/*")
+ }
+ }
+
+ into("regtests") {
+ from("${rootDir}/regtests/requirements.txt")
}
Review Comment:
It's weird to have this directory in the binary distribution. We can make a
symlink in the dir `client/polaris`, and point to it instead.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]