donaldp 00/12/05 02:08:59
Modified: src/bin ant.bat Log: Made win32 scripts similar to unixs by adding .antrc facility Submitted By: "Craig R. McClanahan" <[EMAIL PROTECTED]> Revision Changes Path 1.9 +3 -0 jakarta-ant/src/bin/ant.bat Index: ant.bat =================================================================== RCS file: /home/cvs/jakarta-ant/src/bin/ant.bat,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ant.bat 2000/10/18 13:36:14 1.8 +++ ant.bat 2000/12/05 10:08:57 1.9 @@ -1,5 +1,7 @@ @echo off +if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat" + rem Slurp the command line arguments. This loop allows for an unlimited number of rem agruments (up to the command line limit, anyway). @@ -63,6 +65,7 @@ %JAVACMD% -classpath %LOCALCLASSPATH% -Dant.home="%ANT_HOME%" -Djikes.class.path=%JIKESPATH% %ANT_OPTS% org.apache.tools.ant.Main %ANT_CMD_LINE_ARGS% :end +if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat" set LOCALCLASSPATH= set ANT_CMD_LINE_ARGS=
