Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
merge master
  • Loading branch information
witgo committed May 15, 2014
commit d2e45672931ec28a46cf1ce044e108093b588140
9 changes: 9 additions & 0 deletions assembly/src/main/assembly/spark-dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@
<include>**/*</include>
</includes>
</fileSet>
<fileSet>
<directory>
${project.parent.basedir}/ec2/
</directory>
<outputDirectory>/ec2</outputDirectory>
<includes>
<include>**/*</include>
</includes>
</fileSet>
<fileSet>
<directory>
${project.parent.basedir}/bin/
Expand Down
13 changes: 13 additions & 0 deletions make-distribution.sh
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,23 @@ echo "Spark $VERSION built for Hadoop $SPARK_HADOOP_VERSION" > "$DISTDIR/RELEASE
# Copy jars
cp -r $FWDIR/assembly/target/*spark-dist/* "$DISTDIR/"
cp -r $FWDIR/examples/target/*spark-examples-dist/* "$DISTDIR/"

# Copy example sources (needed for python and SQL)
mkdir -p "$DISTDIR//share/spark/examples/src/main"
cp -r $FWDIR/examples/src/main "$DISTDIR//share/spark/examples/src/main"

if [ "$SPARK_HIVE" == "true" ]; then
cp -r $FWDIR/sql/hive/target/*spark-hive-dist/* "$DISTDIR/"
fi

# Copy license and ASF files
cp "$FWDIR/LICENSE" "$DISTDIR"
cp "$FWDIR/NOTICE" "$DISTDIR"

if [ -e $FWDIR/CHANGES.txt ]; then
cp "$FWDIR/CHANGES.txt" "$DISTDIR"
fi

# Download and copy in tachyon, if requested
if [ "$SPARK_TACHYON" == "true" ]; then
TACHYON_VERSION="0.4.1"
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.