Repository: spark Updated Branches: refs/heads/master 84b6ecdef -> d44ee4366
[SPARK-5434] [EC2] Preserve spaces in EC2 path Fixes [SPARK-5434](https://issues.apache.org/jira/browse/SPARK-5434). Simple demonstration of the problem and the fix: ``` $ spacey_path="/path/with some/spaces" $ dirname $spacey_path usage: dirname path $ echo $? 1 $ dirname "$spacey_path" /path/with some $ echo $? 0 ``` Author: Nicholas Chammas <[email protected]> Closes #4224 from nchammas/patch-1 and squashes the following commits: 960711a [Nicholas Chammas] [EC2] Preserve spaces in EC2 path Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/d44ee436 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/d44ee436 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/d44ee436 Branch: refs/heads/master Commit: d44ee436658cd91f3abeb9daa10a5578d7eebd81 Parents: 84b6ecd Author: Nicholas Chammas <[email protected]> Authored: Wed Jan 28 12:56:03 2015 -0800 Committer: Andrew Or <[email protected]> Committed: Wed Jan 28 12:56:03 2015 -0800 ---------------------------------------------------------------------- ec2/spark-ec2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/d44ee436/ec2/spark-ec2 ---------------------------------------------------------------------- diff --git a/ec2/spark-ec2 b/ec2/spark-ec2 index 3abd3f3..26e7d22 100755 --- a/ec2/spark-ec2 +++ b/ec2/spark-ec2 @@ -20,6 +20,6 @@ # Preserve the user's CWD so that relative paths are passed correctly to #+ the underlying Python script. -SPARK_EC2_DIR="$(dirname $0)" +SPARK_EC2_DIR="$(dirname "$0")" python -Wdefault "${SPARK_EC2_DIR}/spark_ec2.py" "$@" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
