From: Finn B. <bc...@us...> - 2001-11-26 08:23:05
|
Update of /cvsroot/jython/jython In directory usw-pr-cvs1:/tmp/cvs-serv3460 Modified Files: jython.bat Log Message: Fix for "[ #484181 ] command line args in dos". Added a loop to get all the command line arguments. Index: jython.bat =================================================================== RCS file: /cvsroot/jython/jython/jython.bat,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jython.bat 2001/07/16 10:20:22 1.1 --- jython.bat 2001/11/26 08:23:02 1.2 *************** *** 5,8 **** REM the jython CVS. rem -Xmx90mb ! java.exe -Dpython.home=%JYTHON_HOME% org.python.util.jython %1 %2 %3 %4 %5 %6 %7 %8 %9 --- 5,17 ---- REM the jython CVS. + set ARGS= + + :loop + if [%1] == [] goto end + set ARGS=%ARGS% %1 + shift + goto loop + :end + rem -Xmx90mb ! java.exe -Dpython.home=%JYTHON_HOME% org.python.util.jython %ARGS% |