mirror of https://github.com/apache/kafka.git
HOTFIX: Fix main classpath libs glob for release (fixup KAFKA-3615 regression)
bin/kafka-run-class.sh does not correctly setup the CLASSPATH in release rc2. Author: Dana Powers <dana.powers@gmail.com> Reviewers: Ewen Cheslack-Postava <ewen@confluent.io> Closes #1302 from dpkp/KAFKA-3615-fix
This commit is contained in:
parent
9eaf529ffb
commit
1e4dd66b19
|
@ -118,7 +118,7 @@ do
|
|||
done
|
||||
|
||||
# classpath addition for release
|
||||
for file in $base_dir/libs;
|
||||
for file in $base_dir/libs/*;
|
||||
do
|
||||
if should_include_file "$file"; then
|
||||
CLASSPATH=$CLASSPATH:$file
|
||||
|
|
Loading…
Reference in New Issue