You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by pa...@apache.org on 2014/08/14 18:46:08 UTC

git commit: NOJIRA, fixing misnamed jars in mahout script, causes missing classes in calculated classpath

Repository: mahout
Updated Branches:
  refs/heads/master b447f3fd0 -> a70f48537


NOJIRA, fixing misnamed jars in mahout script, causes missing classes in calculated classpath


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

Branch: refs/heads/master
Commit: a70f48537524bdaa92178bf539bf84aad501c80d
Parents: b447f3f
Author: pferrel <pa...@occamsmachete.com>
Authored: Thu Aug 14 09:45:19 2014 -0700
Committer: pferrel <pa...@occamsmachete.com>
Committed: Thu Aug 14 09:45:19 2014 -0700

----------------------------------------------------------------------
 bin/mahout | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mahout/blob/a70f4853/bin/mahout
----------------------------------------------------------------------
diff --git a/bin/mahout b/bin/mahout
index 5f54181..0174b31 100755
--- a/bin/mahout
+++ b/bin/mahout
@@ -161,7 +161,7 @@ then
   fi
 
   # add scala dev target
-  for f in $MAHOUT_HOME/math-scala/target/mahout-math-scala-*.jar ; do
+  for f in $MAHOUT_HOME/math-scala/target/mahout-math-scala_*.jar ; do
     CLASSPATH=${CLASSPATH}:$f;
   done
 
@@ -173,11 +173,11 @@ then
       CLASSPATH=${CLASSPATH}:$f;
     done
 
-    for f in $MAHOUT_HOME/spark/target/mahout-spark-*.jar ; do
+    for f in $MAHOUT_HOME/spark/target/mahout-spark_*.jar ; do
       CLASSPATH=${CLASSPATH}:$f;
     done
 
-    for f in $MAHOUT_HOME/spark-shell/target/mahout-spark-shell-*.jar ; do
+    for f in $MAHOUT_HOME/spark-shell/target/mahout-spark-shell_*.jar ; do
        CLASSPATH=${CLASSPATH}:$f;
     done