viirya commented on code in PR #45237: URL: https://github.com/apache/spark/pull/45237#discussion_r1501326520
########## dev/make-distribution.sh: ########## @@ -189,6 +189,12 @@ echo "Build flags: $@" >> "$DISTDIR/RELEASE" # Copy jars cp "$SPARK_HOME"/assembly/target/scala*/jars/* "$DISTDIR/jars/" +# Only create the hive-jackson directory if they exist. +for f in "$DISTDIR"/jars/jackson-*-asl-*.jar; do + mkdir -p "$DISTDIR"/hive-jackson + mv $f "$DISTDIR"/hive-jackson/ +done Review Comment: Btw, what's benefit to have separate class path for hive-jackson jars? -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
