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:
Dana Powers 2016-04-30 18:53:44 -07:00 committed by Ewen Cheslack-Postava
parent 9eaf529ffb
commit 1e4dd66b19
1 changed files with 1 additions and 1 deletions

View File

@ -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