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:04 +0800
commit6384f42ab2e5c2b3e767ab4a428cda20a8ddcbe1 (patch)
tree8bfd91323d2d1ce2d390b81669ef22763b36ab06 /make-distribution.sh
parent97eb6d7f511d56fca734ff73fcbd9694403943e0 (diff)
downloadspark-6384f42ab2e5c2b3e767ab4a428cda20a8ddcbe1.tar.gz
spark-6384f42ab2e5c2b3e767ab4a428cda20a8ddcbe1.tar.bz2
spark-6384f42ab2e5c2b3e767ab4a428cda20a8ddcbe1.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
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