Skip to content

Commit d86cdec

Browse files
committed
Merge remote-tracking branch 'upstream/master' into ldaonline
2 parents a570c9a + 517975d commit d86cdec

File tree

130 files changed

+4254
-1633
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+4254
-1633
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*.iml
77
*.iws
88
*.pyc
9+
*.pyo
910
.idea/
1011
.idea_modules/
1112
build/*.jar

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
23-
<artifactId>spark-parent</artifactId>
23+
<artifactId>spark-parent_2.10</artifactId>
2424
<version>1.3.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>

bagel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<parent>
2222
<groupId>org.apache.spark</groupId>
23-
<artifactId>spark-parent</artifactId>
23+
<artifactId>spark-parent_2.10</artifactId>
2424
<version>1.3.0-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>

bin/compute-classpath.cmd

Lines changed: 0 additions & 124 deletions
This file was deleted.

bin/compute-classpath.sh

Lines changed: 0 additions & 161 deletions
This file was deleted.

bin/load-spark-env.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ fi
4141

4242
if [ -z "$SPARK_SCALA_VERSION" ]; then
4343

44-
ASSEMBLY_DIR2="$FWDIR/assembly/target/scala-2.11"
45-
ASSEMBLY_DIR1="$FWDIR/assembly/target/scala-2.10"
46-
44+
ASSEMBLY_DIR2="$SPARK_HOME/assembly/target/scala-2.11"
45+
ASSEMBLY_DIR1="$SPARK_HOME/assembly/target/scala-2.10"
46+
4747
if [[ -d "$ASSEMBLY_DIR2" && -d "$ASSEMBLY_DIR1" ]]; then
4848
echo -e "Presence of build for both scala versions(SCALA 2.10 and SCALA 2.11) detected." 1>&2
4949
echo -e 'Either clean one of them or, export SPARK_SCALA_VERSION=2.11 in spark-env.sh.' 1>&2
@@ -54,5 +54,5 @@ if [ -z "$SPARK_SCALA_VERSION" ]; then
5454
export SPARK_SCALA_VERSION="2.11"
5555
else
5656
export SPARK_SCALA_VERSION="2.10"
57-
fi
57+
fi
5858
fi

0 commit comments

Comments
 (0)