You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2003/09/29 16:07:05 UTC

cvs commit: incubator-geronimo/modules/core/src/bin deploy deploy.bat

ammulder    2003/09/29 07:07:05

  Modified:    modules/core/src/bin deploy deploy.bat
  Log:
  Enable assertions for the deployer, since we use them to make sure the
  XML loading goes well.
  
  Revision  Changes    Path
  1.2       +2 -1      incubator-geronimo/modules/core/src/bin/deploy
  
  Index: deploy
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/bin/deploy,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- deploy	4 Sep 2003 05:24:21 -0000	1.1
  +++ deploy	29 Sep 2003 14:07:05 -0000	1.2
  @@ -11,5 +11,6 @@
   
   DIRNAME=`dirname "$0"`
   COMMAND_PATH="geronimo/deploy"
  +export JAVA_OPTS="$JAVA_OPTS -ea"
   
   exec "$DIRNAME/twiddle" $TWIDDLE_OPTS "$COMMAND_PATH" -- "$@"
  
  
  
  1.2       +4 -1      incubator-geronimo/modules/core/src/bin/deploy.bat
  
  Index: deploy.bat
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/bin/deploy.bat,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- deploy.bat	4 Sep 2003 05:24:21 -0000	1.1
  +++ deploy.bat	29 Sep 2003 14:07:05 -0000	1.2
  @@ -15,6 +15,9 @@
   @rem The path of the command to execute
   set COMMAND_PATH=geronimo/deploy
   
  +@rem Turn on assertions, and must put memory arg here too or twiddle.bat will skip it
  +set JAVA_OPTS=%JAVA_OPTS% -ea -Xmx128m
  +
   :begin
   @rem Determine what directory it is in.
   set DIRNAME=%~dp0