User: slaboure Date: 01/09/01 09:05:36 Modified: . build.bat Log: Put batch in SETLOCAL mode so that any environment variable modification is only active in the batch: once terminated, original variable values are re-activated. Cleared the ANT_HOME environment variable to force the use of our ANT version. Revision Changes Path 1.2 +7 -2 newsite/build.bat Index: build.bat =================================================================== RCS file: /cvsroot/jboss/newsite/build.bat,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- build.bat 2001/08/30 22:34:32 1.1 +++ build.bat 2001/09/01 16:05:36 1.2 @@ -8,7 +8,7 @@ REM REM ====================================================================== REM -REM $Id: build.bat,v 1.1 2001/08/30 22:34:32 user57 Exp $ +REM $Id: build.bat,v 1.2 2001/09/01 16:05:36 slaboure Exp $ REM REM Authors: REM Jason Dillon <[EMAIL PROTECTED]> @@ -16,12 +16,17 @@ REM REM ****************************************************** +REM Ignore the ANT_HOME variable: we want to use *our* +REM ANT version and associated JARs. +REM ****************************************************** REM Ignore the users classpath, cause it might mess REM things up REM ****************************************************** + +SETLOCAL set CLASSPATH= - +set ANT_HOME= REM ****************************************************** REM - "for" loops have been unrolled for compatibility _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
