--- bob mcwhirter <[EMAIL PROTECTED]> wrote: 
> Since you're on windows, you'd be using the $MAVNE_HOME/bin/maven.bat
> script
> though, I guess.  Dunno how <exec> plays on windows.  Care to debug
> this
> for us in build-bootstrap.xml?

Well, I did a little bit of debugging and the problem is not in the
build-bootstrap.xml file, but in the Windows maven.bat file. Patch
attached!

Ringo

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
Index: maven.bat
===================================================================
RCS file: /home/cvspublic/jakarta-turbine-maven/src/bin/maven.bat,v
retrieving revision 1.2
diff -u -r1.2 maven.bat
--- maven.bat   14 Jun 2002 04:57:11 -0000      1.2
+++ maven.bat   29 Jun 2002 13:26:33 -0000
@@ -3,7 +3,7 @@
 if "%MAVEN_HOME%" == "" goto error
 
 set CP=
-for %%i in (%MAVEN_HOME%\lib\*.jar) do call cp.bat %%i
+for %%i in (%MAVEN_HOME%\lib\*.jar) do call %MAVEN_HOME%\bin\cp.bat %%i
 set CP=%JAVA_HOME%\lib\tools.jar;%CP%
 
 java -classpath "%CP%" -Dmaven.home=%MAVEN_HOME% org.apache.maven.app.Maven %*

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to