aboutsummaryrefslogtreecommitdiff
path: root/make-distribution.sh
diff options
context:
space:
mode:
authorHaoyuan Li <haoyuan@cs.berkeley.edu>2014-07-31 22:53:42 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-07-31 22:53:42 -0700
commit2cdc3e5c6f5601086590a0cebf40a48f7560d02e (patch)
treeabb9a1b543f869591c3a4f671cc853df4d1fa9d9 /make-distribution.sh
parentc4755403e7d670176d81211813b6515dec76bee2 (diff)
downloadspark-2cdc3e5c6f5601086590a0cebf40a48f7560d02e.tar.gz
spark-2cdc3e5c6f5601086590a0cebf40a48f7560d02e.tar.bz2
spark-2cdc3e5c6f5601086590a0cebf40a48f7560d02e.zip
[SPARK-2702][Core] Upgrade Tachyon dependency to 0.5.0
Author: Haoyuan Li <haoyuan@cs.berkeley.edu> Closes #1651 from haoyuan/upgrade-tachyon and squashes the following commits: 6f3f98f [Haoyuan Li] upgrade tachyon to 0.5.0
Diffstat (limited to 'make-distribution.sh')
-rwxr-xr-xmake-distribution.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/make-distribution.sh b/make-distribution.sh
index 0a3283ecec..1441497b39 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -128,7 +128,7 @@ if [[ ! "$JAVA_VERSION" =~ "1.6" && -z "$SKIP_JAVA_TEST" ]]; then
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Okay, exiting."
exit 1
- fi
+ fi
fi
if [ "$NAME" == "none" ]; then
@@ -173,7 +173,7 @@ cp $FWDIR/examples/target/scala*/spark-examples*.jar "$DISTDIR/lib/"
# Copy example sources (needed for python and SQL)
mkdir -p "$DISTDIR/examples/src/main"
-cp -r $FWDIR/examples/src/main "$DISTDIR/examples/src/"
+cp -r $FWDIR/examples/src/main "$DISTDIR/examples/src/"
if [ "$SPARK_HIVE" == "true" ]; then
cp $FWDIR/lib_managed/jars/datanucleus*.jar "$DISTDIR/lib/"
@@ -199,7 +199,7 @@ cp -r "$FWDIR/ec2" "$DISTDIR"
# Download and copy in tachyon, if requested
if [ "$SPARK_TACHYON" == "true" ]; then
- TACHYON_VERSION="0.4.1"
+ TACHYON_VERSION="0.5.0"
TACHYON_URL="https://github.com/amplab/tachyon/releases/download/v${TACHYON_VERSION}/tachyon-${TACHYON_VERSION}-bin.tar.gz"
TMPD=`mktemp -d 2>/dev/null || mktemp -d -t 'disttmp'`