Repository: spark Updated Branches: refs/heads/branch-0.9 2a2eacef4 -> ef8501d33
SPARK-2241: quote command line args in ec2 script To preserve quoted command line args (in case options have space in them). Author: Ori Kremer <[email protected]> Closes #1169 from orikremer/quote_cmd_line_args and squashes the following commits: 67e2aa1 [Ori Kremer] quote command line args (cherry picked from commit 9fc373e3a9a8ba7bea9df0950775f48918f63a8a) Signed-off-by: Patrick Wendell <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/ef8501d3 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/ef8501d3 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/ef8501d3 Branch: refs/heads/branch-0.9 Commit: ef8501d33eaef15a793475ba34af5ac83e9e9d7c Parents: 2a2eace Author: Ori Kremer <[email protected]> Authored: Sun Jun 22 20:21:23 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Sun Jun 22 20:24:20 2014 -0700 ---------------------------------------------------------------------- ec2/spark-ec2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/ef8501d3/ec2/spark-ec2 ---------------------------------------------------------------------- diff --git a/ec2/spark-ec2 b/ec2/spark-ec2 index 454057a..31f9771 100755 --- a/ec2/spark-ec2 +++ b/ec2/spark-ec2 @@ -19,4 +19,4 @@ # cd "`dirname $0`" -PYTHONPATH="./third_party/boto-2.4.1.zip/boto-2.4.1:$PYTHONPATH" python ./spark_ec2.py $@ +PYTHONPATH="./third_party/boto-2.4.1.zip/boto-2.4.1:$PYTHONPATH" python ./spark_ec2.py "$@"
