From fb67470da3e8487f30cca4f186df6f80ba7272a6 Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Sat, 30 Apr 2016 18:05:56 -0700 Subject: [PATCH] Fix main classpath libs glob for release (fixup KAFKA-3615 regression) --- bin/kafka-run-class.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/kafka-run-class.sh b/bin/kafka-run-class.sh index e7f8d2ef9fec3..688cced286145 100755 --- a/bin/kafka-run-class.sh +++ b/bin/kafka-run-class.sh @@ -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