You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2014/07/30 22:04:34 UTC

git commit: More wrapping FWDIR in quotes.

Repository: spark
Updated Branches:
  refs/heads/master 95cf20393 -> 0feb349ea


More wrapping FWDIR in quotes.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0feb349e
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0feb349e
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0feb349e

Branch: refs/heads/master
Commit: 0feb349ea07361f0363117404ffc9797c2c80dd1
Parents: 95cf203
Author: Reynold Xin <rx...@apache.org>
Authored: Wed Jul 30 13:04:20 2014 -0700
Committer: Reynold Xin <rx...@apache.org>
Committed: Wed Jul 30 13:04:20 2014 -0700

----------------------------------------------------------------------
 dev/mima              | 2 +-
 dev/run-tests-jenkins | 2 +-
 make-distribution.sh  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/0feb349e/dev/mima
----------------------------------------------------------------------
diff --git a/dev/mima b/dev/mima
index 7857294..4c3e650 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
 

http://git-wip-us.apache.org/repos/asf/spark/blob/0feb349e/dev/run-tests-jenkins
----------------------------------------------------------------------
diff --git a/dev/run-tests-jenkins b/dev/run-tests-jenkins
index 8dda671..3076eb8 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"
 

http://git-wip-us.apache.org/repos/asf/spark/blob/0feb349e/make-distribution.sh
----------------------------------------------------------------------
diff --git a/make-distribution.sh b/make-distribution.sh
index c08093f..0a3283e 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"