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 21:34:06 UTC

git commit: Wrap FWDIR in quotes in dev/check-license.

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


Wrap FWDIR in quotes in dev/check-license.


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

Branch: refs/heads/master
Commit: 95cf203936c412bc689bd2345fec7f9ad3648c25
Parents: f2eb84f
Author: Reynold Xin <rx...@apache.org>
Authored: Wed Jul 30 12:33:42 2014 -0700
Committer: Reynold Xin <rx...@apache.org>
Committed: Wed Jul 30 12:33:42 2014 -0700

----------------------------------------------------------------------
 dev/check-license | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/95cf2039/dev/check-license
----------------------------------------------------------------------
diff --git a/dev/check-license b/dev/check-license
index fbd2dd4..7a603bf 100755
--- a/dev/check-license
+++ b/dev/check-license
@@ -51,7 +51,7 @@ acquire_rat_jar () {
 
 # Go to the Spark project root directory
 FWDIR="$(cd `dirname $0`/..; pwd)"
-cd $FWDIR
+cd "$FWDIR"
 
 if test -x "$JAVA_HOME/bin/java"; then
     declare java_cmd="$JAVA_HOME/bin/java"