aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynold Xin <rxin@apache.org>2014-07-30 13:04:20 -0700
committerReynold Xin <rxin@apache.org>2014-07-30 13:04:20 -0700
commit0feb349ea07361f0363117404ffc9797c2c80dd1 (patch)
tree4e2e9dd5b14d183dab1847cc7d6572ed1cb8322b
parent95cf203936c412bc689bd2345fec7f9ad3648c25 (diff)
downloadspark-0feb349ea07361f0363117404ffc9797c2c80dd1.tar.gz
spark-0feb349ea07361f0363117404ffc9797c2c80dd1.tar.bz2
spark-0feb349ea07361f0363117404ffc9797c2c80dd1.zip
More wrapping FWDIR in quotes.
-rwxr-xr-xdev/mima2
-rwxr-xr-xdev/run-tests-jenkins2
-rwxr-xr-xmake-distribution.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/dev/mima b/dev/mima
index 7857294f61..4c3e65039b 100755
--- a/dev/mima
+++ b/dev/mima
@@ -22,7 +22,7 @@ set -e
# Go to the Spark project root directory
FWDIR="$(cd `dirname $0`/..; pwd)"
-cd $FWDIR
+cd "$FWDIR"
echo -e "q\n" | sbt/sbt oldDeps/update
diff --git a/dev/run-tests-jenkins b/dev/run-tests-jenkins
index 8dda671e97..3076eb847b 100755
--- a/dev/run-tests-jenkins
+++ b/dev/run-tests-jenkins
@@ -22,7 +22,7 @@
# Go to the Spark project root directory
FWDIR="$(cd `dirname $0`/..; pwd)"
-cd $FWDIR
+cd "$FWDIR"
COMMENTS_URL="https://api.github.com/repos/apache/spark/issues/$ghprbPullId/comments"
diff --git a/make-distribution.sh b/make-distribution.sh
index c08093f46b..0a3283ecec 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -150,7 +150,7 @@ else
fi
# Build uber fat JAR
-cd $FWDIR
+cd "$FWDIR"
export MAVEN_OPTS="-Xmx2g -XX:MaxPermSize=512M -XX:ReservedCodeCacheSize=512m"