aboutsummaryrefslogtreecommitdiff
path: root/make-distribution.sh
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-08-22 23:02:09 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-08-29 21:19:06 -0700
commitab0e625d9e0abd62a20754125952e3a00f2c275a (patch)
tree6a49b937b1241f0b021c657cd1b0a5efa9b9635c /make-distribution.sh
parent53cd50c0699efc8733518658100c62426b425de2 (diff)
downloadspark-ab0e625d9e0abd62a20754125952e3a00f2c275a.tar.gz
spark-ab0e625d9e0abd62a20754125952e3a00f2c275a.tar.bz2
spark-ab0e625d9e0abd62a20754125952e3a00f2c275a.zip
Fix PySpark for assembly run and include it in dist
Diffstat (limited to 'make-distribution.sh')
-rwxr-xr-xmake-distribution.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/make-distribution.sh b/make-distribution.sh
index df7bbf1e74..92b2706126 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -94,11 +94,14 @@ echo "Spark $VERSION built for Hadoop $SPARK_HADOOP_VERSION" > "$DISTDIR/RELEASE
cp $FWDIR/assembly/target/*/*assembly*.jar "$DISTDIR/jars/"
# Copy other things
+mkdir "$DISTDIR"/conf
+cp -r "$FWDIR/conf/*.template" "$DISTDIR"
cp -r "$FWDIR/bin" "$DISTDIR"
-cp -r "$FWDIR/conf" "$DISTDIR"
+cp -r "$FWDIR/python" "$DISTDIR"
cp "$FWDIR/spark-class" "$DISTDIR"
cp "$FWDIR/spark-shell" "$DISTDIR"
cp "$FWDIR/spark-executor" "$DISTDIR"
+cp "$FWDIR/pyspark" "$DISTDIR"
if [ "$MAKE_TGZ" == "true" ]; then