Revision: 2277
Author: pekka.klarck
Date: Wed Sep  9 05:27:58 2009
Log: better arg handling (issue 396)
http://code.google.com/p/robotframework/source/detail?r=2277

Modified:
 /trunk/src/bin/jybot
 /trunk/src/bin/pybot
 /trunk/src/bin/rebot

=======================================
--- /trunk/src/bin/jybot        Sun Apr 19 13:26:54 2009
+++ /trunk/src/bin/jybot        Wed Sep  9 05:27:58 2009
@@ -32,4 +32,4 @@
 fi

 # Run Robot on Jython interpreter
-$jython "$runner" $*
+$jython "$runner" "$@"
=======================================
--- /trunk/src/bin/pybot        Sun Apr 19 13:26:54 2009
+++ /trunk/src/bin/pybot        Wed Sep  9 05:27:58 2009
@@ -26,4 +26,4 @@
 runner="[ROBOT_DIR]/runner.py"

 # Run Robot on Python interpreter
-$python "$runner" $*
+$python "$runner" "$@"
=======================================
--- /trunk/src/bin/rebot        Sun Apr 19 13:26:54 2009
+++ /trunk/src/bin/rebot        Wed Sep  9 05:27:58 2009
@@ -26,4 +26,4 @@
 rebot="[ROBOT_DIR]/rebot.py"

 # Run Rebot on Python interpreter
-$python "$rebot" $*
+$python "$rebot" "$@"

Reply via email to