aboutsummaryrefslogtreecommitdiff
path: root/make-distribution.sh
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2014-12-01 16:31:04 +0800
committerXiangrui Meng <meng@databricks.com>2014-12-01 16:31:46 +0800
commit9b8a769187e30f8521cecad92a3a6c7f490d507b (patch)
tree67d3430e00ee02da145257ab426ca8b13c66d193 /make-distribution.sh
parent0f4dad43e30301b9ad8f078ef44f8b8c05c29a25 (diff)
downloadspark-9b8a769187e30f8521cecad92a3a6c7f490d507b.tar.gz
spark-9b8a769187e30f8521cecad92a3a6c7f490d507b.tar.bz2
spark-9b8a769187e30f8521cecad92a3a6c7f490d507b.zip
SPARK-2192 [BUILD] Examples Data Not in Binary Distribution
Simply, add data/ to distributions. This adds about 291KB (compressed) to the tarball, FYI. Author: Sean Owen <sowen@cloudera.com> Closes #3480 from srowen/SPARK-2192 and squashes the following commits: 47688f1 [Sean Owen] Add data/ to distributions (cherry picked from commit 6384f42ab2e5c2b3e767ab4a428cda20a8ddcbe1) Signed-off-by: Xiangrui Meng <meng@databricks.com>
Diffstat (limited to 'make-distribution.sh')
-rwxr-xr-xmake-distribution.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/make-distribution.sh b/make-distribution.sh
index 7c0fb8992a..45c99e42e5 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -201,6 +201,9 @@ if [ -e "$FWDIR"/CHANGES.txt ]; then
cp "$FWDIR/CHANGES.txt" "$DISTDIR"
fi
+# Copy data files
+cp -r "$FWDIR/data" "$DISTDIR"
+
# Copy other things
mkdir "$DISTDIR"/conf
cp "$FWDIR"/conf/*.template "$DISTDIR"/conf