You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ne...@apache.org on 2013/01/22 21:15:52 UTC

[1/2] git commit: KAFKA-722 Fix the classpath in kafka-run-class.sh; reviewed by Neha Narkhede

KAFKA-722 Fix the classpath in kafka-run-class.sh; reviewed by Neha Narkhede


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/b5d685bb
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/b5d685bb
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/b5d685bb

Branch: refs/heads/0.8
Commit: b5d685bb7c1649f46f6553b0e807e704ffcef748
Parents: 5e3e181
Author: John Fung <fu...@gmail.com>
Authored: Tue Jan 22 12:15:10 2013 -0800
Committer: Neha Narkhede <ne...@gmail.com>
Committed: Tue Jan 22 12:15:20 2013 -0800

----------------------------------------------------------------------
 bin/kafka-run-class.sh |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/b5d685bb/bin/kafka-run-class.sh
----------------------------------------------------------------------
diff --git a/bin/kafka-run-class.sh b/bin/kafka-run-class.sh
index ec98b33..62360f3 100755
--- a/bin/kafka-run-class.sh
+++ b/bin/kafka-run-class.sh
@@ -45,12 +45,12 @@ do
   CLASSPATH=$CLASSPATH:$file
 done
 
-for file in $base_dir/perf/target/scala_2.8.0/kafka*.jar;
+for file in $base_dir/perf/target/scala-2.8.0/kafka*.jar;
 do
   CLASSPATH=$CLASSPATH:$file
 done
 
-for file in $base_dir/core/lib_managed/scala_2.8.0/compile/*.jar;
+for file in $base_dir/core/lib_managed/scala-2.8.0/compile/*.jar;
 do
   if [ ${file##*/} != "sbt-launch.jar" ]; then
     CLASSPATH=$CLASSPATH:$file