From: <pj...@us...> - 2009-03-14 23:23:24
|
Revision: 6096 http://jython.svn.sourceforge.net/jython/?rev=6096&view=rev Author: pjenvey Date: 2009-03-14 23:23:10 +0000 (Sat, 14 Mar 2009) Log Message: ----------- maintain the exit code fixes #1261, test_cmd_line's test_directories Modified Paths: -------------- trunk/jython/src/shell/jython Modified: trunk/jython/src/shell/jython =================================================================== --- trunk/jython/src/shell/jython 2009-03-14 23:21:30 UTC (rev 6095) +++ trunk/jython/src/shell/jython 2009-03-14 23:23:10 UTC (rev 6096) @@ -214,6 +214,7 @@ "${JAVA_CMD[@]}" $JAVA_OPTS "${java_args[@]}" -Dpython.home="$JYTHON_HOME" \ -Dpython.executable="$PRG" org.python.util.jython $JYTHON_OPTS "$@" +JYTHON_STATUS=$? if [ -n "$profile_requested" ] ; then echo "Profiling results:" @@ -231,3 +232,5 @@ echo "JYTHON_HOME: Jython installation directory" >&2 echo "JYTHON_OPTS: default command line arguments" >&2 fi + +exit $JYTHON_STATUS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |