You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 10:49:09 UTC

svn commit: r1132134 - /incubator/mesos/trunk/frameworks/mesos-submit/mesos-submit

Author: benh
Date: Sun Jun  5 08:49:08 2011
New Revision: 1132134

URL: http://svn.apache.org/viewvc?rev=1132134&view=rev
Log:
Group arguments with spaces correctly when passing them to python in
mesos-submit.

Modified:
    incubator/mesos/trunk/frameworks/mesos-submit/mesos-submit

Modified: incubator/mesos/trunk/frameworks/mesos-submit/mesos-submit
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/frameworks/mesos-submit/mesos-submit?rev=1132134&r1=1132133&r2=1132134&view=diff
==============================================================================
--- incubator/mesos/trunk/frameworks/mesos-submit/mesos-submit (original)
+++ incubator/mesos/trunk/frameworks/mesos-submit/mesos-submit Sun Jun  5 08:49:08 2011
@@ -12,4 +12,4 @@ if [ "x$MESOS_HOME" == "x" ]; then
 fi
 
 export PYTHONPATH=$MESOS_HOME/lib/python
-exec $PYTHON "$(dirname $0)/mesos_submit.py" $@
+exec $PYTHON "$(dirname $0)/mesos_submit.py" "$@"